diff options
author | pav <pav@FreeBSD.org> | 2007-03-29 14:10:24 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-03-29 14:10:24 +0000 |
commit | e6be52501aca3f6e59c5e578f2804c08a01ce381 (patch) | |
tree | 08e177984bb5c027ceaf5de248a61399bd74cb1d | |
parent | 4ab63de6b793d2b0a30acbaa4592adfd38f7fe93 (diff) | |
download | FreeBSD-ports-e6be52501aca3f6e59c5e578f2804c08a01ce381.zip FreeBSD-ports-e6be52501aca3f6e59c5e578f2804c08a01ce381.tar.gz |
- Fix after objformat removal
Reported by: pointyhat
-rw-r--r-- | devel/flowdesigner/Makefile | 1 | ||||
-rw-r--r-- | games/ggz-kde-client/Makefile | 10 | ||||
-rw-r--r-- | lang/q/Makefile | 1 | ||||
-rw-r--r-- | science/gerris/Makefile | 1 |
4 files changed, 5 insertions, 8 deletions
diff --git a/devel/flowdesigner/Makefile b/devel/flowdesigner/Makefile index 4e62b0b..67aefe5 100644 --- a/devel/flowdesigner/Makefile +++ b/devel/flowdesigner/Makefile @@ -39,6 +39,7 @@ CFLAGS+= -O0 post-patch: @${REINPLACE_CMD} -e 's|tools examples|tools|g' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|src pixmaps|src|g' ${WRKSRC}/vflow/Makefile.in + @${FIND} ${WRKSRC} -name configure | ${XARGS} ${REINPLACE_CMD} -e 's|echo aout|echo elf|' post-install: .if !defined(NOPORTDOCS) diff --git a/games/ggz-kde-client/Makefile b/games/ggz-kde-client/Makefile index 5e2ff9c..9fff9ab 100644 --- a/games/ggz-kde-client/Makefile +++ b/games/ggz-kde-client/Makefile @@ -27,12 +27,6 @@ MAN6= compcal.6 ggzap.6 keepalivecontrol.6 \ kggz.6 kgrubby.6 shadowbridge.6 post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}| ; s|echo aout|echo elf|' ${WRKSRC}/configure -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -IGNORE= depends on libggz which does not build on 4.x -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/lang/q/Makefile b/lang/q/Makefile index 61f80e8..a5ffa59 100644 --- a/lang/q/Makefile +++ b/lang/q/Makefile @@ -91,6 +91,7 @@ post-patch: @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} \ ${GREP} -l "^examplesdir" | ${XARGS} ${REINPLACE_CMD} -e \ "s;[(]pkgdatadir[)]/examples;(datadir)/examples/@PACKAGE@;" + @${FIND} ${WRKSRC} -name configure | ${XARGS} ${REINPLACE_CMD} -e 's|echo aout|echo elf|' @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} \ ${GREP} -l "<malloc\.h>" | ${XARGS} ${REINPLACE_CMD} \ -e "s,<malloc\.h>,<stdlib.h>," diff --git a/science/gerris/Makefile b/science/gerris/Makefile index d97a4bb..7c4a25b 100644 --- a/science/gerris/Makefile +++ b/science/gerris/Makefile @@ -42,6 +42,7 @@ USE_GETOPT_LONG= yes CONFIGURE_ARGS+= --disable-mpi 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 |