diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-08-31 03:21:01 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-08-31 03:21:01 +0000 |
commit | 711b04f690dcc34efe92e6fc5d25302fafdb52c0 (patch) | |
tree | 9199d5d34f46da683e3f8a3f2ff818d7d66f5bcd /archivers/dzip | |
parent | 2139d6f4fb9514d364f47b71fb3d48d9a1affc8b (diff) | |
download | ports-711b04f690dcc34efe92e6fc5d25302fafdb52c0.tar.gz ports-711b04f690dcc34efe92e6fc5d25302fafdb52c0.zip |
Notes
Diffstat (limited to 'archivers/dzip')
-rw-r--r-- | archivers/dzip/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/archivers/dzip/Makefile b/archivers/dzip/Makefile index 2cf03d63afad..11cdb8e07cc9 100644 --- a/archivers/dzip/Makefile +++ b/archivers/dzip/Makefile @@ -24,6 +24,12 @@ ALL_TARGET= ${PORTNAME} PLIST_FILES= bin/${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + post-extract: @${FIND} -E ${WRKDIR} -type f -print0 | \ ${XARGS} -0 ${REINPLACE_CMD} -e 's/[[:cntrl:]]*$$//' @@ -35,4 +41,4 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |