41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
# New ports collection makefile for: fxscintilla
|
|
# Date created: 16 June 2004
|
|
# Whom: Alexander Novitsky <alecn2002@yandex.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fxscintilla
|
|
PORTVERSION= 1.62
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= alecn2002@yandex.ru
|
|
COMMENT= A Fox toolkit reimplementation of Scintilla editing widget
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_LIBTOOL_VER= 15
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_ARGS+= --enable-shared --disable-static
|
|
INSTALLS_SHLIB= yes
|
|
|
|
OPTIONS= FOX10 "FOX1.0 support (FOX1.2 by default)" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_FOX10)
|
|
LIB_DEPENDS+= FOX-1.0.0:${PORTSDIR}/x11-toolkits/fox
|
|
CONFIGURE_ARGS= --with-fox-1-0
|
|
.else
|
|
BROKEN= "Does not build with current fox-devel version"
|
|
LIB_DEPENDS+= FOX-1.4:${PORTSDIR}/x11-toolkits/fox-devel
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-lFOX-1.2|"-lFOX-1.2 ${PTHREAD_LIBS}"|' \
|
|
${WRKSRC}/configure ${WRKSRC}/tests/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|