diff options
author | adam <adam@pkgsrc.org> | 2010-07-22 21:10:52 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-07-22 21:10:52 +0000 |
commit | 6345ae8ce1f7aba4862e0ec0e208b6b403c08487 (patch) | |
tree | 999739dff493378bc8164bb0946b327c1a99d908 /net/ntop/Makefile | |
parent | 639fa84a11b1af0cd0a5acd163619e54f8a713a9 (diff) | |
download | pkgsrc-6345ae8ce1f7aba4862e0ec0e208b6b403c08487.tar.gz |
Changes 4.0:
* Partially rewritten ntop processing engine to address reliability and
performance
* Several bugs and stability issues fixed
* Added better support for IPFIX and NetFlow v9, as well as ntop PEN
(Private Enterprise Number)
* Added support for Cisco ASA firewalls
* Added ntop engine scriptability via the python programming language
* Added RRDalarm plugin for generating alerts based on thresholds
* Improved google maps integration
* Enhanced sFlow support
Diffstat (limited to 'net/ntop/Makefile')
-rw-r--r-- | net/ntop/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/net/ntop/Makefile b/net/ntop/Makefile index 501f8d2d1f5..08e8ad60255 100644 --- a/net/ntop/Makefile +++ b/net/ntop/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.59 2010/06/13 22:45:12 wiz Exp $ +# $NetBSD: Makefile,v 1.60 2010/07/22 21:10:52 adam Exp $ -DISTNAME= ntop-3.3.10 -PKGREVISION= 3 +DISTNAME= ntop-4.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ntop/} @@ -23,9 +22,6 @@ CONFIGURE_ARGS+= --with-gdbm-root=${BUILDLINK_PREFIX.gdbm} 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 -CONFIGURE_ARGS+= --disable-snmp BUILDLINK_API_DEPENDS.libpcap+= libpcap>=0.8.3 @@ -37,7 +33,7 @@ CONFIGURE_ARGS+= --disable-mt .if ${OPSYS} == "Darwin" # This package uses "-flat_namespace -undefined suppress" and exports # symbols from the executable that get stripped unless we set this: -INSTALL_UNSTRIPPED= YES +INSTALL_UNSTRIPPED= yes .endif .if (${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-4].*)) @@ -51,10 +47,10 @@ pre-configure: .include "../../databases/gdbm/buildlink3.mk" .include "../../databases/rrdtool/buildlink3.mk" +.include "../../devel/libevent/buildlink3.mk" .include "../../devel/pcre/buildlink3.mk" -.include "../../lang/lua/buildlink3.mk" +.include "../../lang/python/application.mk" .include "../../net/GeoIP/buildlink3.mk" .include "../../net/libpcap/buildlink3.mk" -.include "../../devel/libevent/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |