diff options
Diffstat (limited to 'lang/bigloo/Makefile')
-rw-r--r-- | lang/bigloo/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lang/bigloo/Makefile b/lang/bigloo/Makefile index f899de23bcc5..77bbaa642174 100644 --- a/lang/bigloo/Makefile +++ b/lang/bigloo/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bigloo -PORTVERSION= 3.1a +PORTVERSION= 3.2a CATEGORIES= lang scheme MASTER_SITES= ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/ \ ftp://kaolin.unice.fr/pub/Bigloo/ @@ -32,7 +32,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ --gclibdir=${LOCALBASE}/lib \ --gcincdir=${LOCALBASE}/include \ --customgc=no -ALL_TARGET= # empty +ALL_TARGET= build INSTALL_TARGET= install-progs compile-bee install-bee USE_LDCONFIG= ${PREFIX}/lib ${PREFIX}/lib/bigloo/${PORTVERSION} PLIST_SUB= BIGLOO_VERSION="${PORTVERSION}" @@ -40,6 +40,12 @@ PLIST_SUB= BIGLOO_VERSION="${PORTVERSION}" MAN1= bigloo.1 INFO= bigloo +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64 +.endif + post-patch: @${REINPLACE_CMD} -e 's|"-O3"|""|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|"-pthread"|"${PTHREAD_LIBS}"|g' \ @@ -63,10 +69,4 @@ post-install: test: build @(cd ${WRKSRC}; ${GMAKE} test) -.include <bsd.port.pre.mk> - -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 -.endif - .include <bsd.port.post.mk> |