diff options
author | tabthorpe <tabthorpe@FreeBSD.org> | 2007-11-06 00:28:58 +0800 |
---|---|---|
committer | tabthorpe <tabthorpe@FreeBSD.org> | 2007-11-06 00:28:58 +0800 |
commit | 422382e716f7aca8504dd84d22c62182431c8cb2 (patch) | |
tree | 25c08be0c02c977638682aab2d68b676e59ae669 /misc | |
parent | 53b4506ed6ded4cf869b6519fa9b534e676cc480 (diff) | |
download | freebsd-ports-gnome-422382e716f7aca8504dd84d22c62182431c8cb2.tar.gz freebsd-ports-gnome-422382e716f7aca8504dd84d22c62182431c8cb2.tar.zst freebsd-ports-gnome-422382e716f7aca8504dd84d22c62182431c8cb2.zip |
- Mark as BROKEN on Freebsd 8.X and AMD64
Reviewed by: miwi@
Approved by: portmgr (pav)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/kcd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/misc/kcd/Makefile b/misc/kcd/Makefile index 2a803acb3421..1b49a065c390 100644 --- a/misc/kcd/Makefile +++ b/misc/kcd/Makefile @@ -23,6 +23,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= kcd.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == amd64 && ${OSVERSION} > 800000 +BROKEN= Attempts to allocate all of memory during configure +.endif + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/kcd-inst ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/kcdscr ${PREFIX}/bin @@ -41,4 +47,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/kcd.sh.init ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |