diff options
author | Jorey Bump <slackbuilds@joreybump.com> | 2010-05-11 22:54:42 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 22:54:42 +0200 |
commit | aaf706d31764d76bcaed1d781a7e3a648d8c4af8 (patch) | |
tree | 6a14c4716c2596e42585be2adc5f03c000aaaafb /network | |
parent | 6146efd5bc11cf00dcbdf93fd1fffaf5d1d25fa1 (diff) | |
download | slackbuilds-aaf706d31764d76bcaed1d781a7e3a648d8c4af8.tar.gz |
network/darkstat: Added to 12.1 repository
Diffstat (limited to 'network')
-rw-r--r-- | network/darkstat/README | 12 | ||||
-rw-r--r-- | network/darkstat/darkstat.SlackBuild | 72 | ||||
-rw-r--r-- | network/darkstat/darkstat.info | 8 | ||||
-rw-r--r-- | network/darkstat/slack-desc | 18 |
4 files changed, 110 insertions, 0 deletions
diff --git a/network/darkstat/README b/network/darkstat/README new file mode 100644 index 0000000000..f608a8653b --- /dev/null +++ b/network/darkstat/README @@ -0,0 +1,12 @@ +darkstat is a packet sniffing daemon that serves statistics over HTTP using a +builtin web server. Statistics can be refined using tcpdump filter expression +syntax. + +Features: +- Traffic graphs, and reports per host, showing each port for each host. +- Embedded web-server with deflate compression. +- Asynchronous reverse DNS resolution using a child process. +- Small. Portable. Single-threaded. Efficient. Uncomplicated. + +Once you have started darkstat (see the manpage), you can access your +network monitor by pointing your browser to: http://youripaddress:667 diff --git a/network/darkstat/darkstat.SlackBuild b/network/darkstat/darkstat.SlackBuild new file mode 100644 index 0000000000..efc6daafa5 --- /dev/null +++ b/network/darkstat/darkstat.SlackBuild @@ -0,0 +1,72 @@ +#!/bin/sh + +# Slackware build script for darkstat + +# Written by Jorey Bump + +PRGNAM=darkstat +VERSION=${VERSION:-3.0.707} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOCS="AUTHORS COPYING.GPL NEWS README THANKS" + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man + +make +make install DESTDIR=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/network/darkstat/darkstat.info b/network/darkstat/darkstat.info new file mode 100644 index 0000000000..5ec5d24e22 --- /dev/null +++ b/network/darkstat/darkstat.info @@ -0,0 +1,8 @@ +PRGNAM="darkstat" +VERSION="3.0.707" +HOMEPAGE="http://dmr.ath.cx/net/darkstat/" +DOWNLOAD="http://dmr.ath.cx/net/darkstat/darkstat-3.0.707.tar.bz2" +MD5SUM="91c70f96498dd679b21330214361e4dc" +MAINTAINER="Jorey Bump" +EMAIL="slackbuilds@joreybump.com" +APPROVED="Michiel" diff --git a/network/darkstat/slack-desc b/network/darkstat/slack-desc new file mode 100644 index 0000000000..4aa3e3d54e --- /dev/null +++ b/network/darkstat/slack-desc @@ -0,0 +1,18 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + |-----handy-ruler------------------------------------------------------| +darkstat: darkstat (packet sniffing daemon that serves statistics over HTTP) +darkstat: +darkstat: darkstat features: +darkstat: +darkstat: Traffic graphs, and reports per host, showing each port for each host. +darkstat: Embedded web-server with deflate compression. +darkstat: Asynchronous reverse DNS resolution using a child process. +darkstat: Small. Portable. Single-threaded. Efficient. Uncomplicated. +darkstat: +darkstat: http://dmr.ath.cx/net/darkstat/ +darkstat: |