diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-05-07 03:14:06 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-05-07 03:14:06 +0000 |
commit | c15dcc04b7c4685bb35af173fa4af967edfa8391 (patch) | |
tree | 6f27ea742aeb62879d478994edc350142d932296 | |
parent | IGNORE on 4.x: Requires GEOM which is a 5.x feature (diff) |
BROKEN on 4.x: Does not compile
Notes
Notes:
svn path=/head/; revision=134745
-rw-r--r-- | finance/qtstalker/Makefile | 8 | ||||
-rw-r--r-- | games/gcompris2/Makefile | 8 | ||||
-rw-r--r-- | multimedia/gstreamer-editor/Makefile | 8 | ||||
-rw-r--r-- | security/sudosh/Makefile | 8 | ||||
-rw-r--r-- | security/sudosh2/Makefile | 8 | ||||
-rw-r--r-- | security/sudosh3/Makefile | 8 | ||||
-rw-r--r-- | www/linkchecker/Makefile | 8 |
7 files changed, 49 insertions, 7 deletions
diff --git a/finance/qtstalker/Makefile b/finance/qtstalker/Makefile index 7b367d58a21c..108d02af2338 100644 --- a/finance/qtstalker/Makefile +++ b/finance/qtstalker/Makefile @@ -51,6 +51,12 @@ PORTDOCS+= \ PLIST_SUB+= \ VERSION_PLUGIN="${VERSION_PLUGIN}" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + post-patch: # tell qtstalker where to install plugins @${FIND} ${WRKSRC} -type f -name "*pro" | \ @@ -110,4 +116,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/games/gcompris2/Makefile b/games/gcompris2/Makefile index 611c7804ca7e..709f945c00a1 100644 --- a/games/gcompris2/Makefile +++ b/games/gcompris2/Makefile @@ -36,8 +36,14 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ INFO= gcompris +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + post-patch: @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ 's|-DGNOME_DISABLE_DEPRECATED||g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/multimedia/gstreamer-editor/Makefile b/multimedia/gstreamer-editor/Makefile index c1959b826ace..b18ebf8fc5dd 100644 --- a/multimedia/gstreamer-editor/Makefile +++ b/multimedia/gstreamer-editor/Makefile @@ -37,4 +37,10 @@ INSTALLS_SHLIB= yes MAN1= gst-editor.1 gst-inspect-gui.1 gst-launch-gui.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> diff --git a/security/sudosh/Makefile b/security/sudosh/Makefile index 5da81d8fed6d..37d3b05de559 100644 --- a/security/sudosh/Makefile +++ b/security/sudosh/Makefile @@ -32,4 +32,10 @@ CONFIGURE_ENV= LDFLAGS="-lutil" MAN1= sudosh.1 MAN8= sudosh-replay.8 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> diff --git a/security/sudosh2/Makefile b/security/sudosh2/Makefile index 5da81d8fed6d..37d3b05de559 100644 --- a/security/sudosh2/Makefile +++ b/security/sudosh2/Makefile @@ -32,4 +32,10 @@ CONFIGURE_ENV= LDFLAGS="-lutil" MAN1= sudosh.1 MAN8= sudosh-replay.8 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> diff --git a/security/sudosh3/Makefile b/security/sudosh3/Makefile index 5da81d8fed6d..37d3b05de559 100644 --- a/security/sudosh3/Makefile +++ b/security/sudosh3/Makefile @@ -32,4 +32,10 @@ CONFIGURE_ENV= LDFLAGS="-lutil" MAN1= sudosh.1 MAN8= sudosh-replay.8 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> diff --git a/www/linkchecker/Makefile b/www/linkchecker/Makefile index 703d7552b812..28581d7442aa 100644 --- a/www/linkchecker/Makefile +++ b/www/linkchecker/Makefile @@ -20,4 +20,10 @@ USE_PYDISTUTILS= yes MAN1= linkchecker.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> |