diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-07 06:00:56 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-07 06:00:56 +0000 |
commit | e419d7d4d516f10c1a01672633c941931eb971ab (patch) | |
tree | 13bc4debd8beaf49a9b6c4f18085607528aa60b8 /games/csmash | |
parent | 7f92cab3429b4eef155a5b61a4a7380cce86f529 (diff) | |
download | ports-e419d7d4d516f10c1a01672633c941931eb971ab.tar.gz ports-e419d7d4d516f10c1a01672633c941931eb971ab.zip |
Notes
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> |