diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-06 12:13:46 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-06 12:13:46 +0000 |
commit | c010659195e23ea3b0dfb259c50181586cdf2e9e (patch) | |
tree | f57b7c9a042bd3285c8c3836ba210224ad2bc6df /games/amphetamine | |
parent | 1878e545460073f56f29967bcea1510cef49a9bb (diff) |
BROKEN on !i386 and !alpha: Does not compile
Notes
Notes:
svn path=/head/; revision=103097
Diffstat (limited to 'games/amphetamine')
-rw-r--r-- | games/amphetamine/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/amphetamine/Makefile b/games/amphetamine/Makefile index 76411bf975cd..c08c9cfa6d62 100644 --- a/games/amphetamine/Makefile +++ b/games/amphetamine/Makefile @@ -24,8 +24,14 @@ USE_GMAKE= yes DATAVERSION= 0.8.6 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "alpha" +BROKEN= "Does not compile on !i386 and !alpha" +.endif + post-install: @cd ${WRKDIR}/amph && ${FIND} . | \ ${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/amph -.include <bsd.port.mk> +.include <bsd.port.post.mk> |