diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-09 08:13:15 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-09 08:13:15 +0800 |
commit | ce8168cc5b2b58d0a61b09a87fd9b9d8bfbfe4af (patch) | |
tree | 87af1a5e557a588507c760c2c210d78c8f7c43b4 /converters | |
parent | 632e4e2e1f42d6e422a0bd8a60045c660278dd3a (diff) | |
download | freebsd-ports-gnome-ce8168cc5b2b58d0a61b09a87fd9b9d8bfbfe4af.tar.gz freebsd-ports-gnome-ce8168cc5b2b58d0a61b09a87fd9b9d8bfbfe4af.tar.zst freebsd-ports-gnome-ce8168cc5b2b58d0a61b09a87fd9b9d8bfbfe4af.zip |
Support stage
Use bsdtar to extract zip
Diffstat (limited to 'converters')
-rw-r--r-- | converters/libb64/Makefile | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/converters/libb64/Makefile b/converters/libb64/Makefile index d83e27456456..451cdba61142 100644 --- a/converters/libb64/Makefile +++ b/converters/libb64/Makefile @@ -6,26 +6,21 @@ PORTVERSION= 1.2 CATEGORIES= converters mail MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME} DISTNAME= ${PORTNAME}-${PORTVERSION}.src +EXTRACT_SUFX= .zip MAINTAINER= ismail.yenigul@surgate.com -COMMENT= A library of ANSI C routines for fast encoding/decoding data +COMMENT= Library of ANSI C routines for fast encoding/decoding data BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend +USES= gmake WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USE_ZIP= yes -USE_GMAKE= yes -NO_STAGE= yes -do-install: - ${INSTALL_DATA} ${WRKSRC}/src/libb64.a ${PREFIX}/lib - ${MKDIR} ${PREFIX}/include/b64 - ${INSTALL_DATA} ${WRKSRC}/include/b64/*.h ${PREFIX}/include/b64 - -.include <bsd.port.pre.mk> +BROKEN_powerpc= Does not compile on powerpc -.if ${ARCH} == "powerpc" -BROKEN= Does not compile on powerpc -.endif +do-install: + ${INSTALL_DATA} ${WRKSRC}/src/libb64.a ${STAGEDIR}${PREFIX}/lib + @${MKDIR} ${STAGEDIR}${PREFIX}/include/b64 + ${INSTALL_DATA} ${WRKSRC}/include/b64/*.h ${STAGEDIR}${PREFIX}/include/b64 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |