diff options
author | dd <dd@FreeBSD.org> | 2002-11-01 07:48:06 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2002-11-01 07:48:06 +0000 |
commit | ec96f58b1c1803c3a02c754abc5cb99d31e42cc7 (patch) | |
tree | 4300732972e476ab8fcaad5879bdcff864d3f2f2 /lang/TenDRA | |
parent | fcddddbde850712383627d3997ca0078c05743fa (diff) | |
download | FreeBSD-ports-ec96f58b1c1803c3a02c754abc5cb99d31e42cc7.zip FreeBSD-ports-ec96f58b1c1803c3a02c754abc5cb99d31e42cc7.tar.gz |
This port builds fine on RELENG_4, so don't mark it BROKEN there.
It's still broken on a recent -current, though, but an OSVERSION value
more specific than 500000 should probably be used.
Note that this port still doesn't build (more specifically, doesn't
install) on bento, since it uses uname(3) to determine the system
version, and bento doesn't fake it (it fakes uname(1)).
Discussed with: kris
Approved by: obrien
Diffstat (limited to 'lang/TenDRA')
-rw-r--r-- | lang/TenDRA/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/TenDRA/Makefile b/lang/TenDRA/Makefile index 0a0a73a..0b3938d 100644 --- a/lang/TenDRA/Makefile +++ b/lang/TenDRA/Makefile @@ -16,10 +16,12 @@ MASTER_SITES= ftp://alph.dera.gov.uk/pub/TenDRA/ \ MAINTAINER= obrien@FreeBSD.org -BROKEN= "Does not build" - .include <bsd.port.pre.mk> +.if ${OSVERSION} > 500000 +BROKEN= "Does not build" +.endif + ONLY_FOR_ARCHS= i386 OSRELEASE!= uname -r PLIST_SUB= OSRELEASE=${OSRELEASE} |