diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-26 09:25:56 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-26 09:25:56 +0000 |
commit | 7cbbfb76cf0608d316ea9ccfe166b4c407e48a94 (patch) | |
tree | b1fbb444d099ccc03a03c8c523798ee9654c12c7 /graphics/nip | |
parent | 39749f9fd11a6a7b9eddc29026520e3749f22974 (diff) | |
download | ports-7cbbfb76cf0608d316ea9ccfe166b4c407e48a94.tar.gz ports-7cbbfb76cf0608d316ea9ccfe166b4c407e48a94.zip |
BROKEN on alpha and amd64: Does not compile
Notes
Notes:
svn path=/head/; revision=102171
Diffstat (limited to 'graphics/nip')
-rw-r--r-- | graphics/nip/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/nip/Makefile b/graphics/nip/Makefile index f9fe10e8c8b4..d64f596406da 100644 --- a/graphics/nip/Makefile +++ b/graphics/nip/Makefile @@ -26,10 +26,16 @@ USE_REINPLACE= yes MAN1= nip.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" || ${ARCH} == "amd64" +BROKEN= "Does not compile on alpha or amd64" +.endif + post-patch: .if defined(NOPORTDOCS) @${REINPLACE_CMD} 's/^EXTRA_DIST = scraps bootstrap doc/EXTRA_DIST = scraps bootstrap/' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} '535,538s/^/#/' ${WRKSRC}/Makefile.in .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |