mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
819f25b36d
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
41 lines
841 B
Makefile
41 lines
841 B
Makefile
# Created by: Daniel Roethlisberger <daniel@roe.ch>
|
|
|
|
PORTNAME= pv
|
|
PORTVERSION= 1.6.20
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.ivarch.com/programs/sources/
|
|
|
|
MAINTAINER= martymac@FreeBSD.org
|
|
COMMENT= Pipe throughput monitor
|
|
|
|
LICENSE= ART20
|
|
|
|
USES= tar:bzip2 gmake
|
|
|
|
CONFLICTS= waon
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ENV+= LD=${LD}
|
|
|
|
PLIST_FILES= bin/pv man/man1/pv.1.gz
|
|
|
|
PORTDOCS= README INSTALL NEWS PACKAGE TODO VERSION release-checklist
|
|
|
|
OPTIONS_DEFINE= DOCS NLS LFS
|
|
OPTIONS_DEFAULT= LFS
|
|
NLS_CONFIGURE_ON= --enable-static-nls
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
LFS_CONFIGURE_ENABLE= lfs
|
|
|
|
post-patch:
|
|
@${CP} ${WRKSRC}/README ${WRKSRC}/doc
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pv
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|