freebsd-ports/sysutils/pv/Makefile
Dmitry Marakasov 80e51f3dad - Remove unsupported OPTIONS from port. These options are only useful to developers anyway and generate a surprising amount of support requests from users of the non-developer kind.
- More verbose description for LFS option

PR:		131348
Submitted by:	Daniel Roethlisberger <daniel at roe dot ch> (maintainer)
2009-02-05 15:30:49 +00:00

55 lines
1.1 KiB
Makefile

# New ports collection makefile for: pv
# Date created: 04 May 2004
# Whom: Daniel Roethlisberger <daniel@roe.ch>
#
# $FreeBSD$
#
PORTNAME= pv
PORTVERSION= 1.1.4
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= SF
MASTER_SITE_SUBDIR= pipeviewer
MAINTAINER= daniel@roe.ch
COMMENT= A pipe throughput monitor
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
MAN1= pv.1
PLIST_FILES= bin/pv
PORTDOCS= README COPYING INSTALL NEWS PACKAGE \
TODO VERSION release-checklist
OPTIONS= LFS "Use large filesystem support" on \
NLS "Use Native Language Support" off
.include <bsd.port.pre.mk>
.if defined(WITHOUT_LFS)
CONFIGURE_ARGS+= --disable-lfs
.endif
.if defined(WITH_NLS)
CONFIGURE_ARGS+= --enable-static-nls
.else
CONFIGURE_ARGS+= --disable-nls
.endif
post-patch:
@${CP} ${WRKSRC}/README ${WRKSRC}/doc
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pv ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/doc/quickref.1 ${MAN1PREFIX}/man/man1/pv.1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR}/
.endif
test:
cd ${WRKSRC} && make test
.include <bsd.port.post.mk>