diff options
author | linimon <linimon@FreeBSD.org> | 2003-11-22 16:41:15 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-11-22 16:41:15 +0000 |
commit | 3b6a93eba661efa725feffae50bd09029669f5c8 (patch) | |
tree | 5a48ecfe0dca6842a84dd1cd8a2bdc493446dfee | |
parent | 9af29590d94bb4c5cd076b69617583e4a9180c66 (diff) | |
download | FreeBSD-ports-3b6a93eba661efa725feffae50bd09029669f5c8.zip FreeBSD-ports-3b6a93eba661efa725feffae50bd09029669f5c8.tar.gz |
Mark broken on 5.x due to problems with imake. Possibly this is
the multiline constant breakage.
-rw-r--r-- | games/xmille/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/xmille/Makefile b/games/xmille/Makefile index 3ecb7cb..2206c0a 100644 --- a/games/xmille/Makefile +++ b/games/xmille/Makefile @@ -21,7 +21,13 @@ WRKSRC= ${WRKDIR}/Mille USE_IMAKE= yes MAN1= xmille.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile due to imake" +.endif + post-extract: @${FIND} ${WRKSRC} -name '*.[ao]' -delete -.include <bsd.port.mk> +.include <bsd.port.post.mk> |