diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-26 03:11:57 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-26 03:11:57 +0000 |
commit | 82f9e5ad5571ce54362c74935980b39d71601aeb (patch) | |
tree | 2f71c6551b79631fbd542b141c384e669000ca3e | |
parent | 954affa7791628821f7a44260c318fd8b30ae842 (diff) |
Notes
-rw-r--r-- | devel/spirit/Makefile | 4 | ||||
-rw-r--r-- | devel/stlport/Makefile | 4 | ||||
-rw-r--r-- | games/sol/Makefile | 8 | ||||
-rw-r--r-- | graphics/sam2p/Makefile | 8 | ||||
-rw-r--r-- | math/scigraphica/Makefile | 8 | ||||
-rw-r--r-- | security/samhain/Makefile | 4 | ||||
-rw-r--r-- | security/sfs/Makefile | 4 | ||||
-rw-r--r-- | security/smtpmap/Makefile | 8 | ||||
-rw-r--r-- | security/stegdetect/Makefile | 4 |
9 files changed, 48 insertions, 4 deletions
diff --git a/devel/spirit/Makefile b/devel/spirit/Makefile index b4919de1626b..af9a3c7a508a 100644 --- a/devel/spirit/Makefile +++ b/devel/spirit/Makefile @@ -29,6 +29,10 @@ CONFIGURE_ARGS= --enable-spirit-threadsafe .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${ARCH} == "amd64" IGNORE= does not build: cc1plus hangs forever (gcc bug) .elif ${ARCH} != "i386" && ${ARCH} != "alpha" diff --git a/devel/stlport/Makefile b/devel/stlport/Makefile index e790de1613ba..9daa59db35ee 100644 --- a/devel/stlport/Makefile +++ b/devel/stlport/Makefile @@ -19,6 +19,10 @@ COMMENT?= Adaptation of SGI's Standard Template Library .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${ARCH} == "alpha" || ${ARCH} == "amd64" BROKEN= "Segfault during build on alpha and amd64" .endif diff --git a/games/sol/Makefile b/games/sol/Makefile index d7b4bdea7a75..80695db863b8 100644 --- a/games/sol/Makefile +++ b/games/sol/Makefile @@ -27,6 +27,12 @@ USE_XPM= yes MAN6= sol.6 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + pre-build: cd ${WRKSRC} && ${GMAKE} depend @@ -46,4 +52,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sol .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/sam2p/Makefile b/graphics/sam2p/Makefile index 5f0ce7f54a41..eb362c35d056 100644 --- a/graphics/sam2p/Makefile +++ b/graphics/sam2p/Makefile @@ -30,7 +30,13 @@ GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} ALL_TARGET= ${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sam2p ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/math/scigraphica/Makefile b/math/scigraphica/Makefile index 644100ffc465..115dc661cf18 100644 --- a/math/scigraphica/Makefile +++ b/math/scigraphica/Makefile @@ -32,6 +32,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @@ -43,4 +49,4 @@ post-install: @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/gnome/scigraphica @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/gnome/scigraphica -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/samhain/Makefile b/security/samhain/Makefile index e9cf4b6382f5..72c26746f8f0 100644 --- a/security/samhain/Makefile +++ b/security/samhain/Makefile @@ -36,6 +36,10 @@ OPTIONS= KCHECK "Enable rogue KLD detection" on \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not build on FreeBSD >= 5.x" +.endif + .if defined(WITH_GPG) BUILD_DEPENDS+= gpg:${PORTSDIR}/security/gnupg .endif diff --git a/security/sfs/Makefile b/security/sfs/Makefile index e1f09b457a2c..8793b7ef6129 100644 --- a/security/sfs/Makefile +++ b/security/sfs/Makefile @@ -34,6 +34,10 @@ CONFIGURE_ARGS+=--with-sfsuser=sfs \ BROKEN= "Does not compile on !i386" .endif +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${OSVERSION} > 500000 LIB_DEPENDS+= gmp.6:${PORTSDIR}/math/libgmp4 CONFIGURE_ARGS+=--with-gmp=${LOCALBASE} diff --git a/security/smtpmap/Makefile b/security/smtpmap/Makefile index 11632a19f264..940ab31dea81 100644 --- a/security/smtpmap/Makefile +++ b/security/smtpmap/Makefile @@ -25,6 +25,12 @@ USE_GMAKE= yes MAKEFILE= makefile +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/makefile.conf @@ -38,4 +44,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/share/${file} ${DATADIR} .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/stegdetect/Makefile b/security/stegdetect/Makefile index 5f4658cae025..c0bd5055159c 100644 --- a/security/stegdetect/Makefile +++ b/security/stegdetect/Makefile @@ -35,6 +35,10 @@ PLIST_SUB+= X11="" .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: ${REINPLACE_CMD} 's/$$(JPEGLIB)/$$(JPEGLIB) -lcrypto/' \ ${WRKSRC}/Makefile.in |