mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
dc667273af
approved by: infrastructure blanket
27 lines
649 B
Makefile
27 lines
649 B
Makefile
# Created by: Kirill Ponomarew <ponomarew@oberon.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iftop
|
|
DISTVERSION= 1.0pre4
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://www.ex-parrot.com/~pdw/iftop/download/
|
|
|
|
MAINTAINER= vd@FreeBSD.org
|
|
COMMENT= Display bandwidth usage on an interface by host
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= ncurses
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= sbin/iftop man/man8/iftop.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|