diff options
-rw-r--r-- | audio/osalp/Makefile | 8 | ||||
-rw-r--r-- | audio/tclmidi/Makefile | 8 | ||||
-rw-r--r-- | devel/astyle/Makefile | 8 | ||||
-rw-r--r-- | graphics/fli2gif/Makefile | 8 | ||||
-rw-r--r-- | misc/dirtree/Makefile | 8 | ||||
-rw-r--r-- | net/easysoap/Makefile | 8 | ||||
-rw-r--r-- | security/bjorb/Makefile | 8 |
7 files changed, 49 insertions, 7 deletions
diff --git a/audio/osalp/Makefile b/audio/osalp/Makefile index 48af51c54d8a..12ebc107ef4f 100644 --- a/audio/osalp/Makefile +++ b/audio/osalp/Makefile @@ -27,8 +27,14 @@ INSTALLS_SHLIB= yes PLIST_SUB= VERSION=${PORTVERSION} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + post-patch: @${REINPLACE_CMD} -e 's|/usr/local/lib/aflib|${PREFIX}/lib/aflib|g' \ ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/audio/tclmidi/Makefile b/audio/tclmidi/Makefile index 5456f530f725..c2de983b8eba 100644 --- a/audio/tclmidi/Makefile +++ b/audio/tclmidi/Makefile @@ -27,7 +27,13 @@ MANN= midiconf.n midievnt.n midifree.n midiget.n midigrep.n \ midiwrit.n midivers.n midimove.n midicopy.n mididel.n \ miditrck.n mididev.n miditime.n midifeat.n +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + post-install: @${CAT} ${PKGMESSAGE} | ${SED} s#/usr/local#${PREFIX}#g -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/devel/astyle/Makefile b/devel/astyle/Makefile index 3f18d13b5f60..4ae739c9bfbe 100644 --- a/devel/astyle/Makefile +++ b/devel/astyle/Makefile @@ -18,6 +18,12 @@ MAINTAINER= croyle@gelemna.org ALL_TARGET= astyle +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/astyle ${PREFIX}/bin .if !defined(NOPORTDOCS) @@ -25,4 +31,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/fli2gif/Makefile b/graphics/fli2gif/Makefile index c7fdf805d9e9..9f54b334eea6 100644 --- a/graphics/fli2gif/Makefile +++ b/graphics/fli2gif/Makefile @@ -18,6 +18,12 @@ NO_WRKSUBDIR= yes USE_ZIP= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + post-extract: @cd ${WRKSRC} && unzip -q -aa source.zip \ && ${LN} -sf GIF.CPP gif.cpp \ @@ -33,4 +39,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/*.TXT ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/misc/dirtree/Makefile b/misc/dirtree/Makefile index 9973ea7686a6..6fea716b2287 100644 --- a/misc/dirtree/Makefile +++ b/misc/dirtree/Makefile @@ -23,4 +23,10 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= dirtree.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + +.include <bsd.port.post.mk> diff --git a/net/easysoap/Makefile b/net/easysoap/Makefile index 858e689e17e7..dd5355399301 100644 --- a/net/easysoap/Makefile +++ b/net/easysoap/Makefile @@ -23,7 +23,13 @@ CONFIGURE_ENV= CXXFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -lexpat" INSTALLS_SHLIB= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + pre-patch: @${PERL} -pi -e 's,<malloc.h>,<stdlib.h>,' \ ${WRKSRC}/src/abyss/src/data.c -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/bjorb/Makefile b/security/bjorb/Makefile index 34b3b868c88b..886502b12369 100644 --- a/security/bjorb/Makefile +++ b/security/bjorb/Makefile @@ -36,6 +36,12 @@ DOCS= ChangeLog \ doc/features.jp EXAMPLES= doc/sample/bjorb.conf.doc +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500035 +BROKEN= "Does not compile on 5.0" +.endif + post-install: @${INSTALL_SCRIPT} ${DOCSRC}/doc/sample/bjorb.sh ${PREFIX}/etc/rc.d/bjorb.sh.sample .if !defined(NOPORTDOCS) @@ -49,4 +55,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |