From owner-svn-ports-all@FreeBSD.ORG Tue Dec 24 16:04:54 2013 Return-Path: Delivered-To: svn-ports-all@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 0DCE5965; Tue, 24 Dec 2013 16:04:54 +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 D42DB1D77; Tue, 24 Dec 2013 16:04:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBOG4r9Q062223; Tue, 24 Dec 2013 16:04:53 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBOG4rJK062220; Tue, 24 Dec 2013 16:04:53 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201312241604.rBOG4rJK062220@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 24 Dec 2013 16:04:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r337368 - in branches/2014Q1/textproc/humanzip: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Dec 2013 16:04:54 -0000 Author: mat Date: Tue Dec 24 16:04:53 2013 New Revision: 337368 URL: http://svnweb.freebsd.org/changeset/ports/337368 Log: MFH: r337357 - Fix biuld with clang - Add LICENSE - Support staging PR: ports/184904 Submitted by: KATO Tsuguru Approved by: portmgr (implicit) Added: branches/2014Q1/textproc/humanzip/files/ - copied from r337357, head/textproc/humanzip/files/ Modified: branches/2014Q1/textproc/humanzip/Makefile (contents, props changed) branches/2014Q1/textproc/humanzip/pkg-descr (contents, props changed) Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/textproc/humanzip/Makefile ============================================================================== --- branches/2014Q1/textproc/humanzip/Makefile Tue Dec 24 16:03:44 2013 (r337367) +++ branches/2014Q1/textproc/humanzip/Makefile Tue Dec 24 16:04:53 2013 (r337368) @@ -9,22 +9,27 @@ MASTER_SITES= SAVANNAH CENKES MAINTAINER= ports@FreeBSD.org COMMENT= Compresses text to human readable output -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e 's|g++|${CXX}|;s|-O2|${CFLAGS}|' \ - ${WRKSRC}/${MAKEFILE} +LICENSE= GPLv2 # (or later) -MAN1= ${PORTNAME}.1 -MLINKS= ${PORTNAME}.1 humanunzip.1 -PLIST_FILES= bin/${PORTNAME} bin/humanunzip PORTDOCS= CHANGELOG README TODO +PLIST_FILES= bin/humanunzip bin/humanzip \ + man/man1/humanunzip.1.gz man/man1/humanzip.1.gz + +post-patch: + @${REINPLACE_CMD} -e \ + 's|g++|$${CXX}| ; \ + s|-O2|$${CFLAGS}|' ${WRKSRC}/${MAKEFILE} do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/human*zip ${PREFIX}/bin/ - @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/ -.ifndef NOPORTDOCS - @${INSTALL} -d ${DOCSDIR}/ - @cd ${WRKSRC}/&&${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ -.endif +.for i in humanzip humanunzip + (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${i} ${STAGEDIR}${PREFIX}/bin) +.endfor + (cd ${WRKSRC} && ${INSTALL_MAN} humanzip.1 \ + ${STAGEDIR}${MAN1PREFIX}/man/man1) + ${LN} -sf humanzip.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/humanunzip.1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for i in ${PORTDOCS} + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) +.endfor .include Modified: branches/2014Q1/textproc/humanzip/pkg-descr ============================================================================== --- branches/2014Q1/textproc/humanzip/pkg-descr Tue Dec 24 16:03:44 2013 (r337367) +++ branches/2014Q1/textproc/humanzip/pkg-descr Tue Dec 24 16:04:53 2013 (r337368) @@ -9,5 +9,4 @@ print size of documents. Humanzip does size of the file as measured in bytes, although this usually happens incidentally. -Author: Matthew Strait WWW: http://savannah.nongnu.org/projects/humanzip/