diff options
author | Michales Michaloudes <korgie_easre_this_and_this@gmail.com> | 2010-05-11 20:01:39 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:39 +0200 |
commit | 092fa42c62795f762d20d530d266ae41a5a91a5e (patch) | |
tree | c8f77dfb9e4155663d53a895d0008ab6a02b1311 /network/nload | |
parent | eae603ee41cf522828c07a4e8c490f4522d97800 (diff) | |
download | slackbuilds-092fa42c62795f762d20d530d266ae41a5a91a5e.tar.gz |
network/nload: Added to 12.0 repository
Diffstat (limited to 'network/nload')
-rw-r--r-- | network/nload/README | 5 | ||||
-rw-r--r-- | network/nload/nload.SlackBuild | 63 | ||||
-rw-r--r-- | network/nload/nload.info | 8 | ||||
-rw-r--r-- | network/nload/slack-desc | 19 |
4 files changed, 95 insertions, 0 deletions
diff --git a/network/nload/README b/network/nload/README new file mode 100644 index 0000000000..6c2bb560f0 --- /dev/null +++ b/network/nload/README @@ -0,0 +1,5 @@ +nload is a console application which monitors network traffic +and bandwidth usage in real time. It visualizes the in and +outgoing traffic using two graphs and provides additional +info like total amount of transfered data an min/max network +usage. diff --git a/network/nload/nload.SlackBuild b/network/nload/nload.SlackBuild new file mode 100644 index 0000000000..033db5a326 --- /dev/null +++ b/network/nload/nload.SlackBuild @@ -0,0 +1,63 @@ +#!/bin/sh + +# Slackware build script for <nload> + +# Written by Michales Michaloudes korgie_earse_this_andthis@gmail.com + +# Exit on most errors +set -e + +PRGNAM=nload +VERSION=0.6.0 +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" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar -xzvf $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 \ + --sysconfdir=/etc \ + --localstatedir=/var + +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 + 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 README $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/nload/nload.info b/network/nload/nload.info new file mode 100644 index 0000000000..e7dd043453 --- /dev/null +++ b/network/nload/nload.info @@ -0,0 +1,8 @@ +PRGNAM="nload" +VERSION="0.6.0" +HOMEPAGE="http://sourceforge.net/projects/nload/" +DOWNLOAD="http://downloads.sourceforge.net/nload/nload-0.6.0.tar.gz" +MD5SUM="a8859e49176bb50826b52b8345b117d3" +MAINTAINER="Michales Michaloudes" +EMAIL="korgie_easre_this_and_this@gmail.com" +APPROVED="rworkman" diff --git a/network/nload/slack-desc b/network/nload/slack-desc new file mode 100644 index 0000000000..76623cac0a --- /dev/null +++ b/network/nload/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------------------------------------------------------| +nload: nload (network traffic monitor) +nload: +nload: nload is a console application which monitors network traffic +nload: and bandwidth usage in real time. It visualizes the in and +nload: outgoing traffic using two graphs and provides additional +nload: info like total amount of transfered data an min/max network +nload: usage. +nload: +nload: +nload: +nload: |