network/xnetload: Added to 12.2 repository

This commit is contained in:
Richard Ellis 2010-05-12 23:32:54 +02:00 committed by David Somero
parent 0d9cd4b8b6
commit ed1a268a9b
5 changed files with 122 additions and 0 deletions

8
network/xnetload/README Normal file
View file

@ -0,0 +1,8 @@
Xnetload displays a count and a graph of the traffic over a specified
network connection.
It either displays bytes/second or packets/second, based on the capabilities
of the kernel. On 2.1.x and later kernels (including the 2.2.x and 2.4.x
series) it displays bytes/s. It requires the /proc file system, or rather
/proc/net/dev which is only found in Linux. So AFAIK this program is Linux
specific.

View file

@ -0,0 +1,16 @@
#!/bin/sh
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config /etc/X11/app-defaults/XNetload.new

View file

@ -0,0 +1,20 @@
# 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-------------------------------------------------------|
xnetload: Xnetload (network traffic monitor application)
xnetload:
xnetload: Xnetload displays a count and a graph of the traffic over a specified
xnetload: network connection.
xnetload:
xnetload: It either displays bytes/second or packets/second, based on the
xnetload: capabilities of the kernel. On 2.1.x and later kernels (including the
xnetload: 2.2.x and 2.4.x series) it displays bytes/s. It requires the /proc file
xnetload: system, or rather /proc/net/dev which is only found in Linux.
xnetload:
xnetload: Homepage: http://www.xs4all.nl/~rsmith/software/#xnetload

View file

@ -0,0 +1,70 @@
#!/bin/sh
# Slackware build script for xnetload
# Written by Richard Ellis (rellis@dp100.com)
# Released into the public domain June 9, 2009
PRGNAM=xnetload
VERSION=${VERSION:-1.11.3}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
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"
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 .
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 {} \;
make
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
make install BINDIR=$PKG/usr/bin MANDIR=$PKG/usr/man/man1
( 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
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/etc/X11/app-defaults
cp XNetload $PKG/etc/X11/app-defaults/XNetload.new
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="xnetload"
VERSION="1.11.3"
HOMEPAGE="http://www.xs4all.nl/~rsmith/software/#xnetload"
DOWNLOAD="http://www.xs4all.nl/~rsmith/software/xnetload-1.11.3.tar.gz"
MD5SUM="02903105de631ba1ac7c5eff9508869f"
MAINTAINER="Richard Ellis"
EMAIL="rellis@dp100.com"
APPROVED="dsomero"