diff options
author | pav <pav@FreeBSD.org> | 2005-08-09 21:46:22 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-08-09 21:46:22 +0800 |
commit | 3a200a3c65c94523f55d258fa744f41b6530b8a7 (patch) | |
tree | 1f13610a4da2e648e759d76a4b0262428734f82b | |
parent | d6db5cfaecfde7e94eea2ad016f11d54742eb721 (diff) | |
download | freebsd-ports-gnome-3a200a3c65c94523f55d258fa744f41b6530b8a7.tar.gz freebsd-ports-gnome-3a200a3c65c94523f55d258fa744f41b6530b8a7.tar.zst freebsd-ports-gnome-3a200a3c65c94523f55d258fa744f41b6530b8a7.zip |
- Mark BROKEN on sparc64/ia64
Reported by: krismail
Approved by: portmgr (kris)
-rw-r--r-- | devel/root/Makefile | 2 | ||||
-rw-r--r-- | net/nam/Makefile | 8 | ||||
-rw-r--r-- | net/ns/Makefile | 4 | ||||
-rw-r--r-- | net/ns2/Makefile | 4 |
4 files changed, 16 insertions, 2 deletions
diff --git a/devel/root/Makefile b/devel/root/Makefile index ab55cba746e6..48ec4fd9a90f 100644 --- a/devel/root/Makefile +++ b/devel/root/Makefile @@ -226,7 +226,7 @@ CONFIGURE_ARGS+= --disable-srp BROKEN= "Does not compile / Needs thread support" .endif -.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" || ${ARCH} == "ia64" BROKEN= "Does not compile" .endif diff --git a/net/nam/Makefile b/net/nam/Makefile index 8810185c1f8f..5bf73e9c7fc5 100644 --- a/net/nam/Makefile +++ b/net/nam/Makefile @@ -27,6 +27,12 @@ CONFIGURE_ARGS= --with-tcl-ver=8.4 --with-tk-ver=8.4 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} ALL_TARGET= # empty +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" +BROKEN= "Does not compile" +.endif + post-patch: @${REINPLACE_CMD} -e 's,friend Queue,friend class Queue,' ${WRKSRC}/queue.h @@ -38,4 +44,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/ex/* ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/net/ns/Makefile b/net/ns/Makefile index 8c872b33d613..628f90073fd1 100644 --- a/net/ns/Makefile +++ b/net/ns/Makefile @@ -30,6 +30,10 @@ ALL_TARGET= .include <bsd.port.pre.mk> +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ns ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/ns.1 ${PREFIX}/man/man1 diff --git a/net/ns2/Makefile b/net/ns2/Makefile index 8c872b33d613..628f90073fd1 100644 --- a/net/ns2/Makefile +++ b/net/ns2/Makefile @@ -30,6 +30,10 @@ ALL_TARGET= .include <bsd.port.pre.mk> +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ns ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/ns.1 ${PREFIX}/man/man1 |