diff options
author | kris <kris@FreeBSD.org> | 2005-03-27 05:40:24 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-03-27 05:40:24 +0800 |
commit | a736cd40dea7c58dfd88864657f8b6833bdf6501 (patch) | |
tree | 563be2535d7aa40593d9c4d3a43c26c67e41b515 /games/criticalmass | |
parent | 4b6fc663a98605654186e167c07b0df34853a88f (diff) | |
download | freebsd-ports-graphics-a736cd40dea7c58dfd88864657f8b6833bdf6501.tar.gz freebsd-ports-graphics-a736cd40dea7c58dfd88864657f8b6833bdf6501.tar.zst freebsd-ports-graphics-a736cd40dea7c58dfd88864657f8b6833bdf6501.zip |
BROKEN on sparc64: Does not compile
Approved by: portmgr (self)
Diffstat (limited to 'games/criticalmass')
-rw-r--r-- | games/criticalmass/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/criticalmass/Makefile b/games/criticalmass/Makefile index fba7b56c4b1..16476299400 100644 --- a/games/criticalmass/Makefile +++ b/games/criticalmass/Makefile @@ -33,6 +33,12 @@ PLIST_FILES= bin/Packer \ share/Critical_Mass/resource.dat PLIST_DIRS= share/Critical_Mass +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + post-patch: @${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG:T}|g ; \ s|^CXXFLAGS|#CXXFLAGS|g ; \ @@ -40,4 +46,4 @@ post-patch: @${GREP} -lR "SDL/SDL" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|SDL/SDL|SDL|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |