diff options
author | danfe <danfe@FreeBSD.org> | 2014-04-24 19:13:08 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2014-04-24 19:13:08 +0800 |
commit | e4e5168e42c7f0e463a56c5eb9302906e2b37e0c (patch) | |
tree | ebf746cfb528572e960b49c6666f8b9e22d5cda2 /sysutils | |
parent | b3807dda352a8fd14bd071f5a9975febd1537450 (diff) | |
download | freebsd-ports-gnome-e4e5168e42c7f0e463a56c5eb9302906e2b37e0c.tar.gz freebsd-ports-gnome-e4e5168e42c7f0e463a56c5eb9302906e2b37e0c.tar.zst freebsd-ports-gnome-e4e5168e42c7f0e463a56c5eb9302906e2b37e0c.zip |
- 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)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pp/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sysutils/pp/Makefile b/sysutils/pp/Makefile index 23e7fd0e815d..5357e8e1c7a1 100644 --- a/sysutils/pp/Makefile +++ b/sysutils/pp/Makefile @@ -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> |