diff options
author | Johan van Selst <johans@FreeBSD.org> | 2013-12-01 18:37:27 +0000 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2013-12-01 18:37:27 +0000 |
commit | effbd66c89707b2bfbdbf951c77568c252ec2a96 (patch) | |
tree | 504d4777383ef992059ad4d66c9a9a91fbd5fe4b /lang/pike78 | |
parent | 78df45ed4acdcd8ade1f7820e12336e4d5c5bc73 (diff) | |
download | ports-effbd66c89707b2bfbdbf951c77568c252ec2a96.tar.gz ports-effbd66c89707b2bfbdbf951c77568c252ec2a96.zip |
Notes
Diffstat (limited to 'lang/pike78')
-rw-r--r-- | lang/pike78/Makefile | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/lang/pike78/Makefile b/lang/pike78/Makefile index aaad135a2207..527c9b1eeea7 100644 --- a/lang/pike78/Makefile +++ b/lang/pike78/Makefile @@ -2,7 +2,7 @@ PORTNAME= pike78 PORTVERSION= 7.8.700 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= http://pike.ida.liu.se/pub/pike/all/${PORTVERSION}/ \ ftp://pike.ida.liu.se/pub/pike/beta/${PORTVERSION}/ \ @@ -13,12 +13,11 @@ DISTNAME= Pike-v${PORTVERSION} MAINTAINER= johans@FreeBSD.org COMMENT= A dynamic programming language with a syntax similar to C++ -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ - tiff:${PORTSDIR}/graphics/tiff \ - gdbm:${PORTSDIR}/databases/gdbm \ - pcre:${PORTSDIR}/devel/pcre \ - mird:${PORTSDIR}/databases/mird \ - gmp:${PORTSDIR}/math/gmp +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libgdbm.so:${PORTSDIR}/databases/gdbm \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libgmp.so:${PORTSDIR}/math/gmp CONFLICTS= pike7[26]-[0-9]* @@ -52,6 +51,7 @@ CONFIGURE_ARGS+= --without-debug \ --with-jpeg \ --with-tiff \ --with-gdbm \ + --with-perl \ --with-relocatable-dumped-modules \ --without-GL --without-GLUT \ --without-GTK \ @@ -76,29 +76,23 @@ MAKE_ENV= "ac_cv_lib_nettle_nettle_md5_init=no" USES= bison gettext gmake perl5 -# Allow building Embedded Perl -CONFIGURE_ARGS+= --with-perl - PLIST_FILES= bin/pike bin/pike78 bin/hilfe NO_STAGE= yes + .include <bsd.port.pre.mk> ONLY_FOR_ARCHS= i386 amd64 -.if ${OSVERSION} < 800000 -BROKEN= Does not build on FreeBSD < 8.x -.endif - .if ${PORT_OPTIONS:MTTF} -LIB_DEPENDS+= ttf:${PORTSDIR}/print/freetype +LIB_DEPENDS+= libttf.so:${PORTSDIR}/print/freetype CONFIGURE_ARGS+= --with-ttflib .else CONFIGURE_ARGS+= --without-ttflib .endif .if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 CONFIGURE_ARGS+= --with-freetype .else CONFIGURE_ARGS+= --without-freetype |