2003-06-01 03:53:14 +02:00
|
|
|
# New ports collection makefile for: iftop
|
|
|
|
# Date created: 24 May 2003
|
|
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= iftop
|
2006-02-21 11:19:36 +01:00
|
|
|
PORTVERSION= 0.17
|
2004-02-23 05:42:13 +01:00
|
|
|
CATEGORIES= net-mgmt
|
2005-06-08 13:59:42 +02:00
|
|
|
MASTER_SITES= http://www.ex-parrot.com/~pdw/iftop/download/
|
2003-06-01 03:53:14 +02:00
|
|
|
|
2006-01-20 07:12:05 +01:00
|
|
|
MAINTAINER= vd@FreeBSD.org
|
2005-06-08 13:59:42 +02:00
|
|
|
COMMENT= Display bandwidth usage on an interface by host
|
2003-06-01 03:53:14 +02:00
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
2005-06-08 13:59:42 +02:00
|
|
|
CONFIGURE_ARGS= --with-resolver=netdb_1thread
|
2003-11-11 22:21:47 +01:00
|
|
|
|
|
|
|
MAN8= iftop.8
|
2003-06-01 03:53:14 +02:00
|
|
|
|
2005-06-08 13:59:42 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
2004-03-20 19:28:17 +01:00
|
|
|
PORTDOCS= README
|
2005-06-08 13:59:42 +02:00
|
|
|
.endif
|
2004-03-20 19:28:17 +01:00
|
|
|
PLIST_FILES= bin/iftop
|
|
|
|
|
2003-06-01 03:53:14 +02:00
|
|
|
post-patch:
|
2003-11-11 22:21:47 +01:00
|
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
|
2003-06-01 03:53:14 +02:00
|
|
|
${WRKSRC}/configure
|
|
|
|
|
|
|
|
do-install:
|
2005-06-08 13:59:42 +02:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${MAN8PREFIX}/man/man8
|
2003-06-01 03:53:14 +02:00
|
|
|
|
|
|
|
post-install:
|
2005-06-08 13:59:42 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
2003-06-01 03:53:14 +02:00
|
|
|
.endif
|
|
|
|
|
2005-06-08 13:59:42 +02:00
|
|
|
.include <bsd.port.mk>
|