diff options
Diffstat (limited to 'lang/bigloo/Makefile')
-rw-r--r-- | lang/bigloo/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lang/bigloo/Makefile b/lang/bigloo/Makefile index ddc2d0d7f7e9..9d9e24e43251 100644 --- a/lang/bigloo/Makefile +++ b/lang/bigloo/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bigloo -PORTVERSION= 2.5a +PORTVERSION= 2.6b CATEGORIES= lang scheme MASTER_SITES= ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/ \ ftp://kaolin.unice.fr/pub/Bigloo/ @@ -20,12 +20,14 @@ ALL_TARGET= INSTALL_TARGET= install compile-bee install-bee EMACS_PORT_NAME?= emacs21 MAN1= bigloo.1 +INFO= bigloo PLIST_SUB= BIGLOO_VERSION=${PORTVERSION} INSTALLS_SHLIB= yes LDCONFIG_DIRS= %%PREFIX%%/lib/bigloo/%%BIGLOO_VERSION%% +USE_REINPLACE= yes HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ +CONFIGURE_ARGS= --prefix=${PREFIX} \ --emacs=${EMACS_NAME} \ --lispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/bigloo \ --native=yes \ @@ -33,6 +35,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ INSTALL_INFO?= install-info +post-configure: + ${REINPLACE_CMD} -e 's/BGL_HAVE_SENDFILE 1/BGL_HAVE_SENDFILE 0/' \ + ${WRKSRC}/lib/${PORTVERSION}/bigloo_config.h + .include <bsd.port.pre.mk> .if ${OSVERSION} >= 500113 |