diff options
author | kris <kris@FreeBSD.org> | 2005-07-21 08:17:02 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-07-21 08:17:02 +0800 |
commit | 9802a7c6390c0f576e4cc6ea300ea97140d0414d (patch) | |
tree | 3b42d70b40fffe4db24b8f44835758f90ee361f0 /graphics | |
parent | 9617abc0dda6c51de67882523903651176e6e878 (diff) | |
download | freebsd-ports-gnome-9802a7c6390c0f576e4cc6ea300ea97140d0414d.tar.gz freebsd-ports-gnome-9802a7c6390c0f576e4cc6ea300ea97140d0414d.tar.zst freebsd-ports-gnome-9802a7c6390c0f576e4cc6ea300ea97140d0414d.zip |
BROKEN on 4.x and on sparc64: Does not compile
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/icoutils/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/graphics/icoutils/Makefile b/graphics/icoutils/Makefile index c1008a69da44..e9f347e7cfd5 100644 --- a/graphics/icoutils/Makefile +++ b/graphics/icoutils/Makefile @@ -30,4 +30,14 @@ PLIST_FILES= \ bin/icotool \ bin/wrestool -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> |