189285868c
Pktstat listens to the network and shows the bandwidth being consumed by packets of various kinds in realtime. It understands some protocols (including FTP, HTTP, and X11) and adds a descriptive name next to the entry.
30 lines
645 B
Makefile
30 lines
645 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/08/02 15:35:21 couderc Exp $
|
|
|
|
COMMENT= "network traffic viewer"
|
|
|
|
VERSION= 1.7.2q
|
|
DISTNAME= pktstat-${VERSION}
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.itee.uq.edu.au/~leonard/personal/software/
|
|
|
|
MAINTAINER= Damien Couderc <couderc@openbsd.org>
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAKE_FILE= BSDmakefile
|
|
|
|
MAKE_ENV= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pktstat ${PREFIX}/sbin
|
|
${INSTALL_DATA} ${WRKSRC}/pktstat.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|