diff options
author | kris <kris@FreeBSD.org> | 2004-02-25 09:51:08 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-25 09:51:08 +0000 |
commit | 214d0ef9e90eb37cc4cd03324bbc0d8a5da33b59 (patch) | |
tree | ec41168542d87a14ff587d876f4c94a9f210c382 /games/yadex | |
parent | fe6c5cc617adc9538b4bcce5955eaced4d863552 (diff) | |
download | FreeBSD-ports-214d0ef9e90eb37cc4cd03324bbc0d8a5da33b59.zip FreeBSD-ports-214d0ef9e90eb37cc4cd03324bbc0d8a5da33b59.tar.gz |
BROKEN on alpha and amd64: Does not compile
Diffstat (limited to 'games/yadex')
-rw-r--r-- | games/yadex/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/yadex/Makefile b/games/yadex/Makefile index 71cfb8d..72ad471 100644 --- a/games/yadex/Makefile +++ b/games/yadex/Makefile @@ -21,7 +21,13 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION} MAN6= yadex.6 ybsp.6 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" || ${ARCH} == "amd64" +BROKEN= "Does not compile on alpha or amd64" +.endif + post-install: ${CHMOD} 644 ${PREFIX}/etc/yadex/${PORTVERSION}/yadex.cfg -.include <bsd.port.mk> +.include <bsd.port.post.mk> |