diff options
author | kris <kris@FreeBSD.org> | 2004-11-24 06:51:18 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-24 06:51:18 +0800 |
commit | 9daca3d024051551710bd09239900f8681d9aecd (patch) | |
tree | 653c86b47bf0c0e875916c6961b56cb4f3aa2ee7 /games | |
parent | 96f27b7367ba029f4067e4c4cc4b930c77d23c5e (diff) | |
download | freebsd-ports-gnome-9daca3d024051551710bd09239900f8681d9aecd.tar.gz freebsd-ports-gnome-9daca3d024051551710bd09239900f8681d9aecd.tar.zst freebsd-ports-gnome-9daca3d024051551710bd09239900f8681d9aecd.zip |
BROKEN on ia64 and sparc64: Does not build
Diffstat (limited to 'games')
-rw-r--r-- | games/deng/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/deng/Makefile b/games/deng/Makefile index 8b060d8bfe08..b7899df73251 100644 --- a/games/deng/Makefile +++ b/games/deng/Makefile @@ -41,6 +41,12 @@ PLIST_SUB= WITH_OPENAL="@comment " PLIST_SUB= WITH_OPENAL="" .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "sparc64" +BROKEN= "Does not build on ia64 or sparc64" +.endif + .ifndef (WITH_OPENAL) pre-everything:: @${ECHO_CMD} "" @@ -66,4 +72,4 @@ post-install: @(${SED} -e 's|%%PREFIX%%|${PREFIX}|; s|%%DOCSDIR%%|${DOCSDIR}|' \ <pkg-message >${PKGMESSAGE} && ${CAT} ${PKGMESSAGE}) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |