aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorwjv <wjv@FreeBSD.org>2002-01-25 16:59:58 +0800
committerwjv <wjv@FreeBSD.org>2002-01-25 16:59:58 +0800
commit6abe4b78165cf6a03b1a45a02fd2d16cced04399 (patch)
treec428e4e1a20a627ee5a9678f390de9d410c9df60 /net
parentdabe743580eeaa3e84c084c5587159cbc6890cc7 (diff)
downloadfreebsd-ports-gnome-6abe4b78165cf6a03b1a45a02fd2d16cced04399.tar.gz
freebsd-ports-gnome-6abe4b78165cf6a03b1a45a02fd2d16cced04399.tar.zst
freebsd-ports-gnome-6abe4b78165cf6a03b1a45a02fd2d16cced04399.zip
- Enable suport for libwrap.
- Bump PORTREVISION. - Update pkg-{comment,descr} while I'm at it. Requested by: Dave Cole <dacole@corp.attcanada.ca> (libwrap support)
Diffstat (limited to 'net')
-rw-r--r--net/ntop/Makefile8
-rw-r--r--net/ntop/pkg-comment2
-rw-r--r--net/ntop/pkg-descr11
3 files changed, 14 insertions, 7 deletions
diff --git a/net/ntop/Makefile b/net/ntop/Makefile
index c4e6aa3eea82..eb83a8f3d376 100644
--- a/net/ntop/Makefile
+++ b/net/ntop/Makefile
@@ -7,7 +7,7 @@
PORTNAME= ntop
PORTVERSION= 2.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= ftp://ftp.ntop.org/pub/local/ntop/source/ \
ftp://ftp.us.ntop.org/pub/ntop/source/ \
@@ -36,7 +36,11 @@ USE_LIBTOOL= yes
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --localstatedir=${DBDIR} \
--with-gdbm-root=${LOCALBASE} \
- --with-gdchart-root=${LOCALBASE} \
+ --with-gdchart-root=${LOCALBASE}
+
+.if !defined(WITHOUT_TCPWRAP)
+CONFIGURE_ARGS+= --enable-tcpwrap
+.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 400014
diff --git a/net/ntop/pkg-comment b/net/ntop/pkg-comment
index 95747b96366b..9a0c435ae68a 100644
--- a/net/ntop/pkg-comment
+++ b/net/ntop/pkg-comment
@@ -1 +1 @@
-Shows network usage with an interface similar to top(1)
+Network monitoring tool with command line and web interfaces
diff --git a/net/ntop/pkg-descr b/net/ntop/pkg-descr
index 3924789bbbef..d0893002cd29 100644
--- a/net/ntop/pkg-descr
+++ b/net/ntop/pkg-descr
@@ -1,6 +1,9 @@
-ntop is a tool that shows the network usage, similar to what the popular
-top(1) Unix command does. ntop is based on libpcap.
+ntop is a flexible and feature-rich tool for monitoring and troubleshooting
+local area networks. It provides command line and web interfaces, the latter
+via an embedded web server. ntop is based on libpcap.
-WWW: http://www.ntop.org/
+Author: Luca Deri <deri@ntop.org>
+WWW: http://www.ntop.org/
-Bill Fumerola <billf@FreeBSD.org>
+-- Bill Fumerola <billf@FreeBSD.org> (original port)
+-- Johann Visagie <wjv@FreeBSD.org> (maintainer since 2.0)