diff options
author | martymac <martymac@FreeBSD.org> | 2011-01-04 16:50:22 +0800 |
---|---|---|
committer | martymac <martymac@FreeBSD.org> | 2011-01-04 16:50:22 +0800 |
commit | f7e4f26bc9e92e8a38493f2dc6aa5389e953428f (patch) | |
tree | 259f67ca0a04d513d0796a4a21be9a92b45142dc /sysutils/pv/Makefile | |
parent | 562a77a15fa9124b2f0d305356e3058e90c3814e (diff) | |
download | freebsd-ports-gnome-f7e4f26bc9e92e8a38493f2dc6aa5389e953428f.tar.gz freebsd-ports-gnome-f7e4f26bc9e92e8a38493f2dc6aa5389e953428f.tar.zst freebsd-ports-gnome-f7e4f26bc9e92e8a38493f2dc6aa5389e953428f.zip |
- Update to 1.2.0
- Update MASTER_SITES, now hosted on Google code
- Takeover maintainership
- Add missing LICENSE
- Cleanup docs handling and remove useless COPYING file
Approved by: ehaupt (mentor)
Diffstat (limited to 'sysutils/pv/Makefile')
-rw-r--r-- | sysutils/pv/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sysutils/pv/Makefile b/sysutils/pv/Makefile index f06f71dba47e..dbf5b7e99bf3 100644 --- a/sysutils/pv/Makefile +++ b/sysutils/pv/Makefile @@ -6,21 +6,24 @@ # PORTNAME= pv -PORTVERSION= 1.1.4 -PORTREVISION= 1 +PORTVERSION= 1.2.0 CATEGORIES= sysutils -MASTER_SITES= SF/pipeviewer/pipeviewer/${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ + SF/${PROJECTHOST}/${PROJECTHOST}/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= martymac@FreeBSD.org COMMENT= A pipe throughput monitor +PROJECTHOST= pipeviewer +LICENSE= ART20 + USE_BZIP2= yes USE_GMAKE= yes GNU_CONFIGURE= yes MAN1= pv.1 PLIST_FILES= bin/pv -PORTDOCS= README COPYING INSTALL NEWS PACKAGE \ +PORTDOCS= README INSTALL NEWS PACKAGE \ TODO VERSION release-checklist OPTIONS= LFS "Use large filesystem support" on \ NLS "Use Native Language Support" off @@ -44,7 +47,9 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/doc/quickref.1 ${MAN1PREFIX}/man/man1/pv.1 .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR}/ +.for doc in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR} +.endfor .endif test: |