diff options
-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> |