diff options
author | kris <kris@FreeBSD.org> | 2004-03-04 17:17:47 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-04 17:17:47 +0800 |
commit | cf9d14fbd17dbe8e5e588881482a14fae54eb6c9 (patch) | |
tree | a32cf49c774299db0548b3ec0fbc28a6a0520785 | |
parent | efbe666fd6a3613b7098cb21baf28e4ad6712592 (diff) | |
download | freebsd-ports-gnome-cf9d14fbd17dbe8e5e588881482a14fae54eb6c9.tar.gz freebsd-ports-gnome-cf9d14fbd17dbe8e5e588881482a14fae54eb6c9.tar.zst freebsd-ports-gnome-cf9d14fbd17dbe8e5e588881482a14fae54eb6c9.zip |
BROKEN on sparc64: Does not compile
-rw-r--r-- | lang/tcl81-thread/Makefile | 4 | ||||
-rw-r--r-- | mail/pgp4pine/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lang/tcl81-thread/Makefile b/lang/tcl81-thread/Makefile index c4a29051e4bc..c40a8a00f949 100644 --- a/lang/tcl81-thread/Makefile +++ b/lang/tcl81-thread/Makefile @@ -58,6 +58,10 @@ MANCOMPRESSED= yes .include <bsd.port.pre.mk> +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + post-install: .if exists(${PKGINSTALL}) ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} diff --git a/mail/pgp4pine/Makefile b/mail/pgp4pine/Makefile index dc27f6c30044..162b4bf33fb0 100644 --- a/mail/pgp4pine/Makefile +++ b/mail/pgp4pine/Makefile @@ -34,6 +34,12 @@ PKGMESSAGE= ${WRKDIR}/pkg-message SAMPLEDIR= ${PREFIX}/share/examples/${PORTNAME} SCRIPTDIR= ${SAMPLEDIR} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + # Post-patch # @@ -81,4 +87,4 @@ display-message: @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |