mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/iftop: Removed (part of Slackware 14.0)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
50c2c67332
commit
e722b62de2
4 changed files with 0 additions and 106 deletions
|
@ -1,4 +0,0 @@
|
|||
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?".
|
|
@ -1,74 +0,0 @@
|
|||
#!/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}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
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.${PKGTYPE:-tgz}
|
|
@ -1,9 +0,0 @@
|
|||
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"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="chopp"
|
||||
EMAIL="nix4me@gmail.com"
|
|
@ -1,19 +0,0 @@
|
|||
# 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: Homepage: http://www.ex-parrot.com/~pdw/iftop/
|
||||
iftop:
|
||||
iftop:
|
||||
iftop:
|
Loading…
Reference in a new issue