Date: Thu, 24 Apr 2014 11:13:08 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351993 - head/sysutils/pp Message-ID: <201404241113.s3OBD8BQ089467@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Thu Apr 24 11:13:08 2014 New Revision: 351993 URL: http://svnweb.freebsd.org/changeset/ports/351993 QAT: https://qat.redports.org/buildarchive/r351993/ Log: - Be more specific about the license (BSD -> BSD3CLAUSE) - Fix a nasty bug that prevented getopt() loop from working on some architectures (e.g. PowerPC) - Stagify; convert USE_BZIP2 to Uses (tar:bzip2) Modified: head/sysutils/pp/Makefile Modified: head/sysutils/pp/Makefile ============================================================================== --- head/sysutils/pp/Makefile Thu Apr 24 10:29:42 2014 (r351992) +++ head/sysutils/pp/Makefile Thu Apr 24 11:13:08 2014 (r351993) @@ -3,6 +3,7 @@ PORTNAME= pp PORTVERSION= 1.03 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE \ http://de.nologin.ru/distfiles/sysutils/pp/ @@ -11,11 +12,14 @@ PROJECTHOST= pipe-progress MAINTAINER= a.arepo@gmail.com COMMENT= Small and fast progress bar for pipe -LICENSE= BSD +LICENSE= BSD3CLAUSE -USE_BZIP2= yes +USES= tar:bzip2 +MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" PLIST_FILES= bin/pp -NO_STAGE= yes +post-patch: + @${REINPLACE_CMD} -e 's,char opt,int opt,' ${WRKSRC}/src/main.c + .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404241113.s3OBD8BQ089467>