aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjohans <johans@FreeBSD.org>2012-06-18 05:14:36 +0800
committerjohans <johans@FreeBSD.org>2012-06-18 05:14:36 +0800
commit89a8da1baf9d80203e04efa2f0b998a8bf486e70 (patch)
tree011857327a826fd982018c4aa51bc13c56dbe86c
parent3068cfca6676fab50f53b20ffca953a307c0a631 (diff)
downloadfreebsd-ports-gnome-89a8da1baf9d80203e04efa2f0b998a8bf486e70.tar.gz
freebsd-ports-gnome-89a8da1baf9d80203e04efa2f0b998a8bf486e70.tar.zst
freebsd-ports-gnome-89a8da1baf9d80203e04efa2f0b998a8bf486e70.zip
Mark broken on FreeBSD 7.x
-rw-r--r--lang/gforth/Makefile6
-rw-r--r--lang/pike78/Makefile4
2 files changed, 8 insertions, 2 deletions
diff --git a/lang/gforth/Makefile b/lang/gforth/Makefile
index 2d56aefdf8d4..73d5b8b83099 100644
--- a/lang/gforth/Makefile
+++ b/lang/gforth/Makefile
@@ -17,8 +17,6 @@ COMMENT= Fast and portable Forth system
LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi
BUILD_DEPENDS= ${LOCALBASE}/include/avcall.h:${PORTSDIR}/devel/ffcall
-BROKEN= does not build
-
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
@@ -44,6 +42,10 @@ PORTDOCS= *
.include <bsd.port.pre.mk>
+.if ${OSVERSION} < 800000
+BROKEN= Does not build on FreeBSD < 8.x
+.endif
+
.if ${ARCH} == i386 || ${ARCH} == "powerpc"
WORDSIZE=32
.else
diff --git a/lang/pike78/Makefile b/lang/pike78/Makefile
index 2f9398714184..2a63abe9e578 100644
--- a/lang/pike78/Makefile
+++ b/lang/pike78/Makefile
@@ -91,6 +91,10 @@ PLIST_FILES= bin/pike bin/pike78 bin/hilfe
ONLY_FOR_ARCHS= i386 amd64
+.if ${OSVERSION} < 800000
+BROKEN= Does not build on FreeBSD < 8.x
+.endif
+
.ifdef(WITHOUT_RELOCATABLE_DUMPED_MODULES)
CONFIGURE_ARGS+= --without-relocatable-dumped-modules
.else