diff options
author | pav <pav@FreeBSD.org> | 2008-05-20 07:04:49 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-05-20 07:04:49 +0800 |
commit | 435cb8384b022005ed1915ccaf1fcd299cccb2e5 (patch) | |
tree | 050b178cd5425632b26d9af404921bafe4c79d62 | |
parent | d68b0077afdcef2cbb681790db17548366f4151a (diff) | |
download | freebsd-ports-gnome-435cb8384b022005ed1915ccaf1fcd299cccb2e5.tar.gz freebsd-ports-gnome-435cb8384b022005ed1915ccaf1fcd299cccb2e5.tar.zst freebsd-ports-gnome-435cb8384b022005ed1915ccaf1fcd299cccb2e5.zip |
- Mark BROKEN on 5.x
Reported by: pointyhat
-rw-r--r-- | databases/fastdb/Makefile | 4 | ||||
-rw-r--r-- | x11-toolkits/gnustep-gui/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/databases/fastdb/Makefile b/databases/fastdb/Makefile index 27a899eb7c5f..3ee623f187e9 100644 --- a/databases/fastdb/Makefile +++ b/databases/fastdb/Makefile @@ -29,6 +29,10 @@ PORTDOCS= FastDB.htm .include <bsd.port.pre.mk> +.if ${OSVERSION} < 600000 +BROKEN= does not compile +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile index 3523c474cc3b..991a0d2f2f67 100644 --- a/x11-toolkits/gnustep-gui/Makefile +++ b/x11-toolkits/gnustep-gui/Makefile @@ -48,6 +48,12 @@ MAKE_FLAGS+= OPTFLAG="${CFLAGS}" BREAKS_IF_PEDANTIC= yes PLIST_SUB+= BASEVERSION=${PORTVERSION:C/[.][0-9]*$//1} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600000 +BROKEN= does not link +.endif + .if defined(WITHOUT_GNUSTEP_FAKEMAIN) .if !exists(/proc/curproc) IGNORE= requires procfs mounted to build or run, for details see procfs(5) @@ -89,4 +95,4 @@ pre-configure: ${REINPLACE_CMD} -e "s|doc=no|doc=yes|" ${WRKSRC}/GNUmakefile .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |