diff options
author | krion <krion@FreeBSD.org> | 2004-12-09 10:29:50 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-12-09 10:29:50 +0000 |
commit | bdddb06e9de17fc7a4a2d96f04712ee13f084c08 (patch) | |
tree | d42951158793c98e4d7e7f2a54092afbc5d9ae71 /graphics | |
parent | 60935869bb5991c70bcc8970c61fa2821917e465 (diff) | |
download | FreeBSD-ports-bdddb06e9de17fc7a4a2d96f04712ee13f084c08.zip FreeBSD-ports-bdddb06e9de17fc7a4a2d96f04712ee13f084c08.tar.gz |
BROKEN: Does not compile on 4.x
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/batik/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/batik/Makefile b/graphics/batik/Makefile index e855a1b..c6108c4 100644 --- a/graphics/batik/Makefile +++ b/graphics/batik/Makefile @@ -30,6 +30,12 @@ BATIK_HOME= ${PREFIX}/batik ANT_ALL_TARGET+= html .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on 4.x" +.endif + do-build: @cd ${WRKSRC} && ${ANT} ${ANT_ALL_TARGET} @@ -41,4 +47,4 @@ do-install: @${FIND} ${BATIK_HOME} -type d | ${SORT} -r | \ ${SED} -e "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |