summaryrefslogtreecommitdiff
path: root/net-mgmt/iftop/Makefile
diff options
context:
space:
mode:
authorJean-Yves Lefort <jylefort@FreeBSD.org>2005-06-08 11:59:42 +0000
committerJean-Yves Lefort <jylefort@FreeBSD.org>2005-06-08 11:59:42 +0000
commit40c925016b9f7123fa14973d472370c3773df803 (patch)
tree40830f7ad0171dee3988892b30f621a0d4513c6d /net-mgmt/iftop/Makefile
parent- Add a missing runtime dependency on rsync (diff)
[1]:
- force iftop to use its netdb_1thread resolver, instead of the buggy "fork" one which leaves 2 processes (holding /dev/bpf?) after exiting - remove a stale entry from MASTER_SITES - change comment and description to match iftop.spec - pass maintainership to submitter Moreover: - fix the packing list when NOPORTDOCS is defined - unsilence the install - polish the Makefile PR: ports/81830 [1] Submitted by: Vasil Dimov <vd@datamax.bg> (new maintainer) [1]
Notes
Notes: svn path=/head/; revision=137045
Diffstat (limited to 'net-mgmt/iftop/Makefile')
-rw-r--r--net-mgmt/iftop/Makefile27
1 files changed, 13 insertions, 14 deletions
diff --git a/net-mgmt/iftop/Makefile b/net-mgmt/iftop/Makefile
index 62215f0eb3f3..14c9ea29c156 100644
--- a/net-mgmt/iftop/Makefile
+++ b/net-mgmt/iftop/Makefile
@@ -7,38 +7,37 @@
PORTNAME= iftop
PORTVERSION= 0.16
+PORTREVISION= 1
CATEGORIES= net-mgmt
-MASTER_SITES= http://www.ex-parrot.com/~pdw/iftop/download/ \
- http://voodoo.oberon.net/
+MASTER_SITES= http://www.ex-parrot.com/~pdw/iftop/download/
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Network utility for real-time bandwidth usage information
+MAINTAINER= vd@datamax.bg
+COMMENT= Display bandwidth usage on an interface by host
GNU_CONFIGURE= yes
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ARGS= --with-resolver=netdb_1thread
USE_REINPLACE= yes
MAN8= iftop.8
+.if !defined(NOPORTDOCS)
PORTDOCS= README
+.endif
PLIST_FILES= bin/iftop
-.include <bsd.port.pre.mk>
-
post-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
${WRKSRC}/configure
do-install:
- @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
- @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${MANPREFIX}/man/man8
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${MAN8PREFIX}/man/man8
post-install:
-.ifndef (NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.for i in README
- @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
-.endfor
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>