diff options
author | kris <kris@FreeBSD.org> | 2004-03-07 14:00:56 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-07 14:00:56 +0800 |
commit | 9628636f4da34da9c4b470cc3fe60b1a634bbe84 (patch) | |
tree | 3945007498b49004eb03b2d6b4c2428d2a0f7fa5 /games/csmash | |
parent | cc5e70edc38242282e9df88dbb88493b24a55d5a (diff) | |
download | freebsd-ports-gnome-9628636f4da34da9c4b470cc3fe60b1a634bbe84.tar.gz freebsd-ports-gnome-9628636f4da34da9c4b470cc3fe60b1a634bbe84.tar.zst freebsd-ports-gnome-9628636f4da34da9c4b470cc3fe60b1a634bbe84.zip |
BROKEN on alpha and amd64: Does not compile
Diffstat (limited to 'games/csmash')
-rw-r--r-- | games/csmash/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/csmash/Makefile b/games/csmash/Makefile index 8d9f48174d28..7db00f7ec6ce 100644 --- a/games/csmash/Makefile +++ b/games/csmash/Makefile @@ -25,8 +25,14 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" || ${ARCH} == "amd64" +BROKEN= "Does not compile on alpha or amd64" +.endif + post-patch: @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ 's|/games/|/|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |