diff options
author | kris <kris@FreeBSD.org> | 2004-11-18 08:33:08 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-18 08:33:08 +0000 |
commit | cfa6d228a222e147f5ace1930f18844ec1e14e47 (patch) | |
tree | 206b46aa73eed1faf17a6254bff650ba2e7707d3 /games/battleball | |
parent | 271e6cf2cacb4192b0f3d10602864b9cb428185a (diff) | |
download | FreeBSD-ports-cfa6d228a222e147f5ace1930f18844ec1e14e47.zip FreeBSD-ports-cfa6d228a222e147f5ace1930f18844ec1e14e47.tar.gz |
BROKEN on ia64 and sparc64: Does not compile
Diffstat (limited to 'games/battleball')
-rw-r--r-- | games/battleball/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/battleball/Makefile b/games/battleball/Makefile index 2b1daf2..eec50c0 100644 --- a/games/battleball/Makefile +++ b/games/battleball/Makefile @@ -21,6 +21,12 @@ MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" CFLAGS+= -Wno-deprecated +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "sparc64" +BROKEN= "Does not compile on ia64 or sparc64" +.endif + do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/battleball ${PREFIX}/bin @@ -32,4 +38,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |