diff options
author | Thomas Abthorpe <tabthorpe@FreeBSD.org> | 2008-01-07 14:36:37 +0000 |
---|---|---|
committer | Thomas Abthorpe <tabthorpe@FreeBSD.org> | 2008-01-07 14:36:37 +0000 |
commit | 78357a86753b721118d4ccc8339745f6859740b0 (patch) | |
tree | 35d1bc9b217cfda03552de99cc3beda5973d5562 /science | |
parent | 1f563de14643cdde77bf15143025043c90b3234e (diff) | |
download | ports-78357a86753b721118d4ccc8339745f6859740b0.tar.gz ports-78357a86753b721118d4ccc8339745f6859740b0.zip |
- Mark as BROKEN >= 700042
- s/INSTALLS_SHLIB/USE_LDCONFIG/ while I am here
PR: ports/119251
Submitted by: Oliver Dunkl <odunkl gmx.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=205170
Diffstat (limited to 'science')
-rw-r--r-- | science/gerris/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/science/gerris/Makefile b/science/gerris/Makefile index 875781a4840b..5af51f89a93d 100644 --- a/science/gerris/Makefile +++ b/science/gerris/Makefile @@ -35,15 +35,21 @@ CONFIGURE_ARGS+= --disable-dx USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -INSTALLS_SHLIB= yes +USE_LDCONFIG= yes USE_GNOME= pkgconfig USE_GETOPT_LONG= yes CONFIGURE_ARGS+= --disable-mpi +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= does not compile +.endif + post-patch: @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' \ ${WRKSRC}/src/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |