diff options
author | kris <kris@FreeBSD.org> | 2004-02-25 18:00:49 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-25 18:00:49 +0800 |
commit | 69f03cc51128b2e20865ad5204bba0563ef9b65b (patch) | |
tree | a4747728a27f33923f020ca9faa1be307aa0a258 /graphics/xaos | |
parent | 544f02f900e8b4349ca186dfb0b8a08f22fd8248 (diff) | |
download | freebsd-ports-gnome-69f03cc51128b2e20865ad5204bba0563ef9b65b.tar.gz freebsd-ports-gnome-69f03cc51128b2e20865ad5204bba0563ef9b65b.tar.zst freebsd-ports-gnome-69f03cc51128b2e20865ad5204bba0563ef9b65b.zip |
BROKEN on 5.x !i386 and !amd64: Does not compile
Diffstat (limited to 'graphics/xaos')
-rw-r--r-- | graphics/xaos/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/xaos/Makefile b/graphics/xaos/Makefile index c72a0c67507a..aa176d2f2857 100644 --- a/graphics/xaos/Makefile +++ b/graphics/xaos/Makefile @@ -36,8 +36,14 @@ CFLAGS= -DHAVE_SYS_PARAM_H \ -fforce-mem -fforce-addr -funroll-loops MAN6= xaos.6 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "amd64" && ${OSVERSION} >= 502102 +BROKEN= "Does not compile on FreeBSD >=5.x on !i386 and !amd64" +.endif + post-install: ${STRIP_CMD} ${PREFIX}/bin/xaos install-info ${PREFIX}/info/xaos.info ${PREFIX}/info/dir -.include <bsd.port.mk> +.include <bsd.port.post.mk> |