diff options
author | Felippe de Meirelles Motta <lippe@FreeBSD.org> | 2008-09-02 21:52:16 +0000 |
---|---|---|
committer | Felippe de Meirelles Motta <lippe@FreeBSD.org> | 2008-09-02 21:52:16 +0000 |
commit | 36b233c0d0732a553e27c338f7880051680955f2 (patch) | |
tree | e1c5becaab2eaa42f22d0fffe4805273f2db6d0e /devel/open-beagle/Makefile | |
parent | 5583daec2c188381e255ee3c4b207bc3c7544af3 (diff) |
Notes
Diffstat (limited to 'devel/open-beagle/Makefile')
-rw-r--r-- | devel/open-beagle/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/devel/open-beagle/Makefile b/devel/open-beagle/Makefile index 06f89f66d050..cab84f22a923 100644 --- a/devel/open-beagle/Makefile +++ b/devel/open-beagle/Makefile @@ -7,10 +7,9 @@ # PORTNAME= open-beagle -PORTVERSION= 3.0.1 +PORTVERSION= 3.0.3 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= beagle +MASTER_SITES= SF/beagle DISTNAME= beagle-${PORTVERSION} MAINTAINER= sf@slappy.org @@ -18,11 +17,18 @@ COMMENT= An Evolutionary Computation Framework CONFLICTS= beagle-[0-9]* USE_AUTOTOOLS= libtool:15 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-optimization +CONFIGURE_ARGS= --enable-optimization --with-zlib=/usr USE_LDCONFIG= yes USE_GMAKE= yes +PACCVERSION= 1.3.1b -PLIST_SUB= PORTVERSION=${PORTVERSION} +PLIST_SUB= PORTVERSION=${PORTVERSION} PACCVERSION=${PACCVERSION} +BUILD_DEPENDS+= gsed:${PORTSDIR}/textproc/gsed + +#unfortunately, some important sed statements rely on GNU sed behavior, and can't be +#easily changed to call GNU sed by means of the configure script +post-configure: + ${FIND} -X ${WRKSRC} -name 'Makefile' | ${XARGS} ${REINPLACE_CMD} \ + 's/sed /gsed /g' .include <bsd.port.mk> |