diff options
author | obache <obache> | 2007-10-14 02:17:41 +0000 |
---|---|---|
committer | obache <obache> | 2007-10-14 02:17:41 +0000 |
commit | 1b1f31855e089be52e1ab38722121e9ec8960b51 (patch) | |
tree | 48443a3fafbd6576c0564c9e36fa8a9258f00644 /net | |
parent | 59be673277314f120de987a04a2eedad87f18c7c (diff) | |
download | pkgsrc-1b1f31855e089be52e1ab38722121e9ec8960b51.tar.gz |
Update darkstat to 3.0.707.
Patch provided by MAINTAINER, Bartosz Kuzma in PR 37052.
Changes since 3.0.619:
- Fix silly bug in formatting hex.
- Check for pcap.h in include/pcap/ for old RedHat-a-likes.
- New commandline parser.
- To stay in foreground, pass --debug instead of -d.
- We can now reset all statistics at runtime (send SIGUSR1)
- Make chroot dir configurable on cmdline (--chroot)
- Make privdrop user configurable on cmdline (--user)
- Implement daylog (brings back a v2 feature)
- Import and export hosts and graphs, this brings back a fairly
major v2 feature. Big ups to Ben for doing a lot of the
design and implementation of this feature!
Note that the v3 database format is, by design, incompatible
with the v2 format.
- Report average KB/s in and out on graphs.
Thanks to Damian Lozinski for suggestion and first cut at the
implementation.
- Fix graph rotation when the delay between rotations is big
enough to clear an entire graph.
- Make ip_proto 8 bits wide, to match the IP header.
- Implement pidfile functionality for people who prefer to
handle daemons in this manner.
Diffstat (limited to 'net')
-rw-r--r-- | net/darkstat/Makefile | 5 | ||||
-rw-r--r-- | net/darkstat/distinfo | 9 | ||||
-rw-r--r-- | net/darkstat/patches/patch-ab | 19 |
3 files changed, 6 insertions, 27 deletions
diff --git a/net/darkstat/Makefile b/net/darkstat/Makefile index e89754d8e8b..6c614bdb50b 100644 --- a/net/darkstat/Makefile +++ b/net/darkstat/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2007/06/11 15:23:12 obache Exp $ +# $NetBSD: Makefile,v 1.6 2007/10/14 02:17:41 obache Exp $ # -DISTNAME= darkstat-3.0.619 -PKGREVISION= 1 +DISTNAME= darkstat-3.0.707 CATEGORIES= net MASTER_SITES= http://dmr.ath.cx/net/darkstat/ DIST_SUBDIR= darkstat diff --git a/net/darkstat/distinfo b/net/darkstat/distinfo index 629259f94ad..4a3ce676c2f 100644 --- a/net/darkstat/distinfo +++ b/net/darkstat/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.3 2007/05/09 13:39:11 obache Exp $ +$NetBSD: distinfo,v 1.4 2007/10/14 02:17:41 obache Exp $ -SHA1 (darkstat/darkstat-3.0.619.tar.bz2) = d38aeb6c6a77b324cd1e267625f40509b358a83a -RMD160 (darkstat/darkstat-3.0.619.tar.bz2) = 39fc8fa9e49b7cfe73917d97a062cd8855f38828 -Size (darkstat/darkstat-3.0.619.tar.bz2) = 82508 bytes -SHA1 (patch-ab) = afb531d2c041582c1c6d62c948e7b58ca7f6bd1c +SHA1 (darkstat/darkstat-3.0.707.tar.bz2) = a5df521ffbd801b32cb52aaa846fea3448f5750f +RMD160 (darkstat/darkstat-3.0.707.tar.bz2) = 91a19ef837a58f6b464cc24c4dc34bcb8ef15a59 +Size (darkstat/darkstat-3.0.707.tar.bz2) = 90459 bytes diff --git a/net/darkstat/patches/patch-ab b/net/darkstat/patches/patch-ab deleted file mode 100644 index 05ed7be80bf..00000000000 --- a/net/darkstat/patches/patch-ab +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2007/05/09 13:39:12 obache Exp $ - ---- configure.orig 2007-04-29 12:19:45.000000000 +0200 -+++ configure -@@ -1702,13 +1702,7 @@ RULE="---------------------------------- - - # Check whether --with-chroot-dir was given. - if test "${with_chroot_dir+set}" = set; then -- withval=$with_chroot_dir; if test \! -d "$withval" ; then -- { { echo "$as_me:$LINENO: error: directory $withval doesn't exist" >&5 --echo "$as_me: error: directory $withval doesn't exist" >&2;} -- { (exit 1); exit 1; }; } -- else -- _chd="$withval" -- fi -+ _chd=$with_chroot_dir - else - # Find an "empty" directory to serve as the chroot. - _chd="/var/empty" |