diff options
author | kris <kris@FreeBSD.org> | 2004-03-06 20:13:46 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-06 20:13:46 +0800 |
commit | f49d491d64b3d7b880df2b0eb284afe93127b232 (patch) | |
tree | 803721e2c6ff1a5751f2e8a15bd3295d38cec6d8 /games | |
parent | 7d261a74e8b0878d9d00378da43a4b9fd6b90532 (diff) | |
download | freebsd-ports-gnome-f49d491d64b3d7b880df2b0eb284afe93127b232.tar.gz freebsd-ports-gnome-f49d491d64b3d7b880df2b0eb284afe93127b232.tar.zst freebsd-ports-gnome-f49d491d64b3d7b880df2b0eb284afe93127b232.zip |
BROKEN on !i386 and !alpha: Does not compile
Diffstat (limited to 'games')
-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> |