From owner-svn-ports-head@FreeBSD.ORG Thu Jan 9 00:13:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59BE6FD5; Thu, 9 Jan 2014 00:13:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 461751062; Thu, 9 Jan 2014 00:13:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s090DGaK039383; Thu, 9 Jan 2014 00:13:16 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s090DGdx039382; Thu, 9 Jan 2014 00:13:16 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401090013.s090DGdx039382@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 9 Jan 2014 00:13:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339193 - head/converters/libb64 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jan 2014 00:13:16 -0000 Author: bapt Date: Thu Jan 9 00:13:15 2014 New Revision: 339193 URL: http://svnweb.freebsd.org/changeset/ports/339193 Log: Support stage Use bsdtar to extract zip Modified: head/converters/libb64/Makefile Modified: head/converters/libb64/Makefile ============================================================================== --- head/converters/libb64/Makefile Thu Jan 9 00:10:08 2014 (r339192) +++ head/converters/libb64/Makefile Thu Jan 9 00:13:15 2014 (r339193) @@ -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 +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 +.include