diff options
author | chopp <nix4me@gmail.com> | 2010-05-11 22:54:49 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:54:49 +0200 |
commit | 6263b72c50ed36c55b1a195186d187be2631b380 (patch) | |
tree | 02425743b90ef0af5318b5e40ee7a29f6c28fa3f /network | |
parent | 95d4a473fb97be982e12f6b6ffee91f369e9393f (diff) |
network/iftop: Added to 12.1 repository
Diffstat (limited to 'network')
-rw-r--r-- | network/iftop/README | 6 | ||||
-rw-r--r-- | network/iftop/iftop.SlackBuild | 59 | ||||
-rw-r--r-- | network/iftop/iftop.info | 8 | ||||
-rw-r--r-- | network/iftop/slack-desc | 19 |
4 files changed, 92 insertions, 0 deletions
diff --git a/network/iftop/README b/network/iftop/README new file mode 100644 index 000000000000..ee9c228c7b7e --- /dev/null +++ b/network/iftop/README @@ -0,0 +1,6 @@ +iftop does for network usage what top(1) does for CPU usage. It listens +to network traffic on a named interface and displays a table of current +bandwidth usage by pairs of hosts. Handy for answering the question +"why is our ADSL link so slow?". + + diff --git a/network/iftop/iftop.SlackBuild b/network/iftop/iftop.SlackBuild new file mode 100644 index 000000000000..9122b5dddd59 --- /dev/null +++ b/network/iftop/iftop.SlackBuild @@ -0,0 +1,59 @@ +#!/bin/sh +# Slackware build script for iftop +# Written by chopp (nix4me@gmail.com) +# Some portions, methods and/or ideas obtained from: +# http://slackbuilds.org/template.SlackBuild + +PRGNAM=iftop +VERSION=${VERSION:-0.17} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man + +make || exit +make install-strip DESTDIR=$PKG || exit 1 + +gzip -9 $PKG/usr/man/man?/* + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \ + $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/iftop/iftop.info b/network/iftop/iftop.info new file mode 100644 index 000000000000..cdcb70c0251c --- /dev/null +++ b/network/iftop/iftop.info @@ -0,0 +1,8 @@ +PRGNAM="iftop" +VERSION="0.17" +HOMEPAGE="http://www.ex-parrot.com/~pdw/iftop/" +DOWNLOAD="http://www.ex-parrot.com/~pdw/iftop/download/iftop-0.17.tar.gz" +MD5SUM="062bc8fb3856580319857326e0b8752d" +MAINTAINER="chopp" +EMAIL="nix4me@gmail.com" +APPROVED="dsomero" diff --git a/network/iftop/slack-desc b/network/iftop/slack-desc new file mode 100644 index 000000000000..a6edf5e4c5d3 --- /dev/null +++ b/network/iftop/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +iftop: iftop (display bandwidth usage on an interface) +iftop: +iftop: iftop does for network usage what top(1) does for CPU usage. +iftop: It listens to network traffic on a named interface and displays +iftop: a table of current bandwidth usage by pairs of hosts. +iftop: Handy for answering the question "why is our ADSL link so slow?". +iftop: +iftop: +iftop: Homepage: http://www.ex-parrot.com/~pdw/iftop/ +iftop: +iftop: |