diff options
author | kris <kris@FreeBSD.org> | 2004-09-29 14:00:57 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-29 14:00:57 +0800 |
commit | 967477cd3615c0f940b99c2b3718897d772ae956 (patch) | |
tree | c93629efe53aeeda26a75ace7e231532c24067ba | |
parent | 78ac0eece7695534c0f39b474e5f4ce3a803cb95 (diff) | |
download | freebsd-ports-gnome-967477cd3615c0f940b99c2b3718897d772ae956.tar.gz freebsd-ports-gnome-967477cd3615c0f940b99c2b3718897d772ae956.tar.zst freebsd-ports-gnome-967477cd3615c0f940b99c2b3718897d772ae956.zip |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
-rw-r--r-- | audio/xmms-fc/Makefile | 8 | ||||
-rw-r--r-- | emulators/xmame/Makefile | 4 | ||||
-rw-r--r-- | ftp/wzdftpd/Makefile | 4 | ||||
-rw-r--r-- | games/xarchon/Makefile | 8 | ||||
-rw-r--r-- | multimedia/xmms-avi/Makefile | 4 | ||||
-rw-r--r-- | security/xca/Makefile | 4 | ||||
-rw-r--r-- | textproc/xalan-c/Makefile | 4 |
7 files changed, 34 insertions, 2 deletions
diff --git a/audio/xmms-fc/Makefile b/audio/xmms-fc/Makefile index ce8f4a771c10..26e91535e2b1 100644 --- a/audio/xmms-fc/Makefile +++ b/audio/xmms-fc/Makefile @@ -23,4 +23,10 @@ USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_GNOME= gtk12 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + +.include <bsd.port.post.mk> diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index 6a41e6053933..19cf703b52a3 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -229,6 +229,10 @@ NETWORK=\# .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${ARCH} != "i386" && ${OSVERSION} >= 502102 BROKEN= "Does not compile on 5.x !i386" .endif diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile index 8c0d57faa8ab..46bc31585be3 100644 --- a/ftp/wzdftpd/Makefile +++ b/ftp/wzdftpd/Makefile @@ -62,6 +62,10 @@ CONFIGURE_ARGS+= --enable-ipv6 .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${PERL_LEVEL} < 500600 PLIST_SUB+= PERL="@comment " .else diff --git a/games/xarchon/Makefile b/games/xarchon/Makefile index e3ae05dffa6c..e1c5b6d32bbe 100644 --- a/games/xarchon/Makefile +++ b/games/xarchon/Makefile @@ -25,8 +25,14 @@ USE_REINPLACE= yes MAN6= xarchon.6 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/multimedia/xmms-avi/Makefile b/multimedia/xmms-avi/Makefile index 82e063a73daa..4b42f1172bf5 100644 --- a/multimedia/xmms-avi/Makefile +++ b/multimedia/xmms-avi/Makefile @@ -31,6 +31,10 @@ CONFIGURE_ARGS= --with-win32-path=${LOCALBASE}/lib/win32 .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e "s|-lc_r|${PTHREAD_LIBS}|g" ${WRKSRC}/configure @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ diff --git a/security/xca/Makefile b/security/xca/Makefile index fd4b78a7f907..206f9e793ae6 100644 --- a/security/xca/Makefile +++ b/security/xca/Makefile @@ -25,6 +25,10 @@ USE_QT_VER= 3 .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -E -e 's,(if[\ \t]+test[\ \t]+.+)[\ \t]+==,\1 =,' \ ${WRKSRC}/configure diff --git a/textproc/xalan-c/Makefile b/textproc/xalan-c/Makefile index a40f879810af..97a66484904a 100644 --- a/textproc/xalan-c/Makefile +++ b/textproc/xalan-c/Makefile @@ -98,6 +98,10 @@ STRIP= .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if defined(ARCH) && \ (${ARCH} == "alpha" || ${ARCH} == "sparc64" || \ ${ARCH} == "amd64" || ${ARCH} == "ia64") |