diff options
author | kris <kris@FreeBSD.org> | 2005-07-21 00:17:02 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-07-21 00:17:02 +0000 |
commit | 9802a7c6390c0f576e4cc6ea300ea97140d0414d (patch) | |
tree | 3b42d70b40fffe4db24b8f44835758f90ee361f0 | |
parent | 9617abc0dda6c51de67882523903651176e6e878 (diff) | |
download | FreeBSD-ports-9802a7c6390c0f576e4cc6ea300ea97140d0414d.zip FreeBSD-ports-9802a7c6390c0f576e4cc6ea300ea97140d0414d.tar.gz |
BROKEN on 4.x and on sparc64: Does not compile
-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 c1008a6..e9f347e 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> |