mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
9dc041cf69
sbm is a simple bandwidth monitor. Besides the basic bandwith monitor it comes with two scripts. sbm-rt-plot can be used for realtime bandwidth graphs and sbm-plot can be used to generate static graphs for bandwith usage over a period of time. WWW: http://git.2f30.org/sbm/ PR: 211595 Submitted by: Tobias Kortkamp <t@tobik.me>
29 lines
616 B
Makefile
29 lines
616 B
Makefile
# Created by: Tobias Kortkamp <t@tobik.me>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sbm
|
|
PORTVERSION= 0.8
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://dl.2f30.org/releases/
|
|
|
|
MAINTAINER= t@tobik.me
|
|
COMMENT= Simple bandwidth monitor
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
MAKE_ARGS= CFLAGS="${CFLAGS}"
|
|
|
|
PLIST_FILES= bin/sbm \
|
|
bin/sbm-plot \
|
|
bin/sbm-rt-plot \
|
|
man/man1/sbm.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sbm ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/sbm-plot ${WRKSRC}/sbm-rt-plot \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/sbm.1 ${STAGEDIR}${MANPREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|