mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
cc3e5b5e86
nifmon is a curses application which displays counters and statistics of one particular network interface in one part of the screen and a stripped down tcpdump(8) output for this interface in the other part of the screen. PR: ports/63358 Submitted by: Simon Barner <barner@gmx.de>
24 lines
500 B
Makefile
24 lines
500 B
Makefile
# New ports collection makefile for: nifmon
|
|
# Date created: Feb 2 2004
|
|
# Whom: Simon Barner <barner@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nifmon
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.freebsd-support.de/misc/
|
|
|
|
MAINTAINER= barner@gmx.de
|
|
COMMENT= A curses based network interface monitoring tool
|
|
|
|
MAN8= nifmon.8
|
|
PLIST_FILES= bin/nifmon
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nifmon ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/nifmon.8 ${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|