pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/ntop ntop is a network traffic probe that shows th...
details: https://anonhg.NetBSD.org/pkgsrc/rev/946141a8eaa8
branches: trunk
changeset: 486975:946141a8eaa8
user: adam <adam%pkgsrc.org@localhost>
date: Thu Jan 06 11:52:35 2005 +0000
description:
ntop is a network traffic probe that shows the network usage, similar to what
the popular top Unix command does. ntop is based on libpcap and it has been
written in a portable way in order to virtually run on every Unix platform and
on Win32 as well.
ntop users can use a web browser (e.g. netscape) to navigate through ntop (that
acts as a web server) traffic information and get a dump of the network status.
In the latter case, ntop can be seen as a simple RMON-like agent with an
embedded web interface.
The use of:
- a web interface
- limited configuration and administration via the web interface
- reduced CPU and memory usage (they vary according to network size and traffic)
make ntop easy to use and suitable for monitoring various kind of networks.
diffstat:
net/ntop/DESCR | 23 +-
net/ntop/Makefile | 45 +++-
net/ntop/PLIST | 388 +++++++++++++++++++++++++++++++++++++++++++++-
net/ntop/distinfo | 10 +-
net/ntop/patches/patch-aa | 22 --
net/ntop/patches/patch-ab | 108 ------------
net/ntop/patches/patch-ac | 28 ---
net/ntop/patches/patch-ad | 80 ---------
8 files changed, 435 insertions(+), 269 deletions(-)
diffs (truncated from 748 to 300 lines):
diff -r 5fbe9731c115 -r 946141a8eaa8 net/ntop/DESCR
--- a/net/ntop/DESCR Thu Jan 06 11:44:16 2005 +0000
+++ b/net/ntop/DESCR Thu Jan 06 11:52:35 2005 +0000
@@ -1,10 +1,15 @@
-ntop is a tool that shows the network usage, similar to what the
-popular top Unix command does. ntop has been written in a portable
-way in order to virtually run on every Unix platform.
+ntop is a network traffic probe that shows the network usage, similar to what
+the popular top Unix command does. ntop is based on libpcap and it has been
+written in a portable way in order to virtually run on every Unix platform and
+on Win32 as well.
-ntop can be used in both interactive or web mode. In the first case,
-ntop displays the network status on the user's terminal whereas in
-web mode a web browser (e.g. netscape) can attach to ntop (that acts
-as a web server) and get a dump of the network status. In the latter
-case, ntop can be seen as a simple RMON-like agent with an embedded
-web interface.
+ntop users can use a web browser (e.g. netscape) to navigate through ntop (that
+acts as a web server) traffic information and get a dump of the network status.
+In the latter case, ntop can be seen as a simple RMON-like agent with an
+embedded web interface.
+
+The use of:
+- a web interface
+- limited configuration and administration via the web interface
+- reduced CPU and memory usage (they vary according to network size and traffic)
+make ntop easy to use and suitable for monitoring various kind of networks.
diff -r 5fbe9731c115 -r 946141a8eaa8 net/ntop/Makefile
--- a/net/ntop/Makefile Thu Jan 06 11:44:16 2005 +0000
+++ b/net/ntop/Makefile Thu Jan 06 11:52:35 2005 +0000
@@ -1,22 +1,41 @@
-# $NetBSD: Makefile,v 1.30 2004/10/03 20:51:23 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2005/01/06 11:52:35 adam Exp $
+
+DISTNAME= ntop-3.1
+CATEGORIES= net
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ntop/}
+EXTRACT_SUFX= .tgz
-DISTNAME= ntop-1.1
-PKGREVISION= 4
-CATEGORIES= net
-MASTER_SITES= ftp://ftp.unipi.it/pub/local/ntop/source/
-EXTRACT_SUFX= -src.tar.gz
+MAINTAINER= adam%NetBSD.org@localhost
+HOMEPAGE= http://www.ntop.org/
+COMMENT= Shows network usage (similar to "top" for processes)
-MAINTAINER= kim%tac.nyc.ny.us@localhost
-HOMEPAGE= http://www.ntop.org/
-COMMENT= Shows network usage (similar to "top" for processes)
+CONFLICTS= ntop-[0-9]*
+
+WRKSRC= ${WRKDIR}/ntop
USE_BUILDLINK3= yes
+USE_GNU_TOOLS+= make
+USE_LIBTOOL= yes
+USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --enable-threads=no
-
-INSTALL_TARGET= install install-man
+CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/share/ntop
+CONFIGURE_ARGS+= --with-gd-root=${BUILDLINK_PREFIX.gd}
+CONFIGURE_ARGS+= --with-gdbm-root=${BUILDLINK_PREFIX.gdbm}
+CONFIGURE_ARGS+= --with-gdchart-root=${BUILDLINK_PREFIX.gdchart}
+CONFIGURE_ARGS+= --with-localedir=${LOCALBASE}/${PKGLOCALEDIR}
+CONFIGURE_ARGS+= --with-libpng-root=${BUILDLINK_PREFIX.png}
+CONFIGURE_ARGS+= --with-ossl-root=${BUILDLINK_PREFIX.openssl}
+CONFIGURE_ARGS+= --with-pcap-root=${BUILDLINK_PREFIX.libpcap}
+CONFIGURE_ARGS+= --with-zlib-root=${BUILDLINK_PREFIX.zlib}
+# ntop-3.x crashes with IPv6
+CONFIGURE_ARGS+= --disable-ipv6
+PTHREAD_OPTS+= require
+
+.include "../../databases/gdbm/buildlink3.mk"
+.include "../../graphics/gdchart/buildlink3.mk"
.include "../../net/libpcap/buildlink3.mk"
-.include "../../devel/ncurses/buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 5fbe9731c115 -r 946141a8eaa8 net/ntop/PLIST
--- a/net/ntop/PLIST Thu Jan 06 11:44:16 2005 +0000
+++ b/net/ntop/PLIST Thu Jan 06 11:52:35 2005 +0000
@@ -1,3 +1,387 @@
-@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:57:08 zuntum Exp $
-sbin/ntop
+@comment $NetBSD: PLIST,v 1.2 2005/01/06 11:52:35 adam Exp $
+bin/ntop
+lib/libicmpPlugin-${PKGVERSION}.so
+lib/libicmpPlugin.a
+lib/libicmpPlugin.so
+lib/liblastSeenPlugin-${PKGVERSION}.so
+lib/liblastSeenPlugin.a
+lib/liblastSeenPlugin.so
+lib/libmyrrd.la
+lib/libnetflowPlugin-${PKGVERSION}.so
+lib/libnetflowPlugin.a
+lib/libnetflowPlugin.so
+lib/libntop.la
+lib/libntopreport.la
+lib/libpdaPlugin-${PKGVERSION}.so
+lib/libpdaPlugin.a
+lib/libpdaPlugin.so
+lib/librrdPlugin-${PKGVERSION}.so
+lib/librrdPlugin.a
+lib/librrdPlugin.so
+lib/libsflowPlugin-${PKGVERSION}.so
+lib/libsflowPlugin.a
+lib/libsflowPlugin.so
+lib/libsnmpPlugin-${PKGVERSION}.so
+lib/libsnmpPlugin.a
+lib/libsnmpPlugin.so
+lib/libxmldumpPlugin-${PKGVERSION}.so
+lib/libxmldumpPlugin.a
+lib/libxmldumpPlugin.so
+lib/ntop/plugins/icmpPlugin.so
+lib/ntop/plugins/lastSeenPlugin.so
+lib/ntop/plugins/netflowPlugin.so
+lib/ntop/plugins/pdaPlugin.so
+lib/ntop/plugins/rrdPlugin.so
+lib/ntop/plugins/sflowPlugin.so
+lib/ntop/plugins/snmpPlugin.so
+lib/ntop/plugins/xmldumpPlugin.so
man/man8/ntop.8
+share/ntop/html/About.html
+share/ntop/html/Admin.html
+share/ntop/html/All.html
+share/ntop/html/Copyright.html
+share/ntop/html/FibreChannel.html
+share/ntop/html/IP.html
+share/ntop/html/JSCookMenu.js
+share/ntop/html/Local.html
+share/ntop/html/Risk_high.gif
+share/ntop/html/Risk_low.gif
+share/ntop/html/Risk_medium.gif
+share/ntop/html/Risk_unknown.gif
+share/ntop/html/SCSI.html
+share/ntop/html/Summary.html
+share/ntop/html/antenna.gif
+share/ntop/html/arrow.gif
+share/ntop/html/arrow_down.gif
+share/ntop/html/arrow_up.gif
+share/ntop/html/back.gif
+share/ntop/html/bar.gif
+share/ntop/html/bg_line.gif
+share/ntop/html/black.gif
+share/ntop/html/blank.gif
+share/ntop/html/bottom_corner.gif
+share/ntop/html/bridge.gif
+share/ntop/html/brocade.gif
+share/ntop/html/bug.png
+share/ntop/html/bulb.gif
+share/ntop/html/card.gif
+share/ntop/html/child.gif
+share/ntop/html/clear.gif
+share/ntop/html/clock.gif
+share/ntop/html/collapsed.gif
+share/ntop/html/copyright.png
+share/ntop/html/corner.gif
+share/ntop/html/deleteURL.gif
+share/ntop/html/deleteUser.gif
+share/ntop/html/disk.gif
+share/ntop/html/dns.gif
+share/ntop/html/download.gif
+share/ntop/html/dump.html
+share/ntop/html/emulex.gif
+share/ntop/html/error.gif
+share/ntop/html/expanded.gif
+share/ntop/html/faq.html
+share/ntop/html/favicon.ico
+share/ntop/html/fback.gif
+share/ntop/html/fforward.gif
+share/ntop/html/forward.gif
+share/ntop/html/functions.js
+share/ntop/html/gauge.jpg
+share/ntop/html/gaugeR.jpg
+share/ntop/html/gaugeS.jpg
+share/ntop/html/graph.gif
+share/ntop/html/gray_bg.gif
+share/ntop/html/help.html
+share/ntop/html/help.png
+share/ntop/html/hostSortNote.html
+share/ntop/html/index.html
+share/ntop/html/info.gif
+share/ntop/html/initiator.gif
+share/ntop/html/lock.png
+share/ntop/html/mail.gif
+share/ntop/html/major.gif
+share/ntop/html/marchio_unipi_pant541_144.gif
+share/ntop/html/menubar.png
+share/ntop/html/menubar_j.png
+share/ntop/html/menuline.png
+share/ntop/html/minor.gif
+share/ntop/html/modifyUser.gif
+share/ntop/html/multihomed.gif
+share/ntop/html/nboxLogo.gif
+share/ntop/html/ntop.gif
+share/ntop/html/ntop.html
+share/ntop/html/ntop_logo.gif
+share/ntop/html/ntopdump.dtd
+share/ntop/html/ntophelp.html
+share/ntop/html/p2p.gif
+share/ntop/html/pie-error.png
+share/ntop/html/printer.gif
+share/ntop/html/privacyNotice.html
+share/ntop/html/question.gif
+share/ntop/html/router.gif
+share/ntop/html/seagate.gif
+share/ntop/html/spacer.gif
+share/ntop/html/statsicons/flags/ad.gif
+share/ntop/html/statsicons/flags/ae.gif
+share/ntop/html/statsicons/flags/af.gif
+share/ntop/html/statsicons/flags/ag.gif
+share/ntop/html/statsicons/flags/ai.gif
+share/ntop/html/statsicons/flags/al.gif
+share/ntop/html/statsicons/flags/am.gif
+share/ntop/html/statsicons/flags/an.gif
+share/ntop/html/statsicons/flags/ao.gif
+share/ntop/html/statsicons/flags/aq.gif
+share/ntop/html/statsicons/flags/ar.gif
+share/ntop/html/statsicons/flags/as.gif
+share/ntop/html/statsicons/flags/at.gif
+share/ntop/html/statsicons/flags/au.gif
+share/ntop/html/statsicons/flags/aw.gif
+share/ntop/html/statsicons/flags/az.gif
+share/ntop/html/statsicons/flags/ba.gif
+share/ntop/html/statsicons/flags/bb.gif
+share/ntop/html/statsicons/flags/bd.gif
+share/ntop/html/statsicons/flags/be.gif
+share/ntop/html/statsicons/flags/bf.gif
+share/ntop/html/statsicons/flags/bg.gif
+share/ntop/html/statsicons/flags/bh.gif
+share/ntop/html/statsicons/flags/bi.gif
+share/ntop/html/statsicons/flags/bj.gif
+share/ntop/html/statsicons/flags/bm.gif
+share/ntop/html/statsicons/flags/bn.gif
+share/ntop/html/statsicons/flags/bo.gif
+share/ntop/html/statsicons/flags/br.gif
+share/ntop/html/statsicons/flags/bs.gif
+share/ntop/html/statsicons/flags/bt.gif
+share/ntop/html/statsicons/flags/bv.gif
+share/ntop/html/statsicons/flags/bw.gif
+share/ntop/html/statsicons/flags/by.gif
+share/ntop/html/statsicons/flags/bz.gif
+share/ntop/html/statsicons/flags/ca.gif
+share/ntop/html/statsicons/flags/cc.gif
+share/ntop/html/statsicons/flags/cd.gif
+share/ntop/html/statsicons/flags/cf.gif
+share/ntop/html/statsicons/flags/cg.gif
+share/ntop/html/statsicons/flags/ch.gif
+share/ntop/html/statsicons/flags/ci.gif
+share/ntop/html/statsicons/flags/ck.gif
+share/ntop/html/statsicons/flags/cl.gif
+share/ntop/html/statsicons/flags/cm.gif
+share/ntop/html/statsicons/flags/cn.gif
+share/ntop/html/statsicons/flags/co.gif
+share/ntop/html/statsicons/flags/com.gif
+share/ntop/html/statsicons/flags/cr.gif
+share/ntop/html/statsicons/flags/cu.gif
+share/ntop/html/statsicons/flags/cv.gif
+share/ntop/html/statsicons/flags/cx.gif
+share/ntop/html/statsicons/flags/cy.gif
+share/ntop/html/statsicons/flags/cz.gif
+share/ntop/html/statsicons/flags/de.gif
+share/ntop/html/statsicons/flags/dj.gif
+share/ntop/html/statsicons/flags/dk.gif
+share/ntop/html/statsicons/flags/dm.gif
+share/ntop/html/statsicons/flags/do.gif
+share/ntop/html/statsicons/flags/dz.gif
+share/ntop/html/statsicons/flags/ec.gif
+share/ntop/html/statsicons/flags/edu.gif
+share/ntop/html/statsicons/flags/ee.gif
+share/ntop/html/statsicons/flags/eg.gif
+share/ntop/html/statsicons/flags/eh.gif
+share/ntop/html/statsicons/flags/es.gif
+share/ntop/html/statsicons/flags/et.gif
+share/ntop/html/statsicons/flags/eu.gif
+share/ntop/html/statsicons/flags/fi.gif
+share/ntop/html/statsicons/flags/fj.gif
+share/ntop/html/statsicons/flags/fk.gif
+share/ntop/html/statsicons/flags/fm.gif
+share/ntop/html/statsicons/flags/fo.gif
+share/ntop/html/statsicons/flags/fr.gif
+share/ntop/html/statsicons/flags/fx.gif
+share/ntop/html/statsicons/flags/ga.gif
+share/ntop/html/statsicons/flags/gb.gif
+share/ntop/html/statsicons/flags/gd.gif
+share/ntop/html/statsicons/flags/ge.gif
+share/ntop/html/statsicons/flags/gf.gif
+share/ntop/html/statsicons/flags/gh.gif
+share/ntop/html/statsicons/flags/gi.gif
+share/ntop/html/statsicons/flags/gl.gif
+share/ntop/html/statsicons/flags/gm.gif
+share/ntop/html/statsicons/flags/gn.gif
Home |
Main Index |
Thread Index |
Old Index