mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
network/nethogs: Added to 12.1 repository
This commit is contained in:
parent
ecac12763b
commit
d517930281
4 changed files with 108 additions and 0 deletions
9
network/nethogs/README
Normal file
9
network/nethogs/README
Normal file
|
@ -0,0 +1,9 @@
|
|||
NetHogs is a small 'net top' tool. Instead of breaking the traffic
|
||||
down per protocol or per subnet, like most tools do, it groups
|
||||
bandwidth by process. NetHogs does not rely on a special kernel
|
||||
module to be loaded. If there's suddenly a lot of network traffic,
|
||||
you can fire up NetHogs and immediately see which PID is causing
|
||||
this. This makes it easy to indentify programs that have gone wild
|
||||
and are suddenly taking up your bandwidth.
|
||||
|
||||
Depends on libcap, available at SlackBuilds.org
|
72
network/nethogs/nethogs.SlackBuild
Normal file
72
network/nethogs/nethogs.SlackBuild
Normal file
|
@ -0,0 +1,72 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for <nethogs>
|
||||
# Written by Michales Michaloudes korgie@gmail.com
|
||||
|
||||
# Modified by Erik Hanson <erik@slackbuilds.org>
|
||||
# sed in SLKCFLAGS and removed template left-overs.
|
||||
|
||||
# Exit on most errors
|
||||
set -e
|
||||
|
||||
PRGNAM=nethogs
|
||||
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"
|
||||
elif [ "$ARCH" = "Piii" ]; then
|
||||
SLKCFLAGS="-O2 -march=pentium3 -pipe -fomit-frame-pointer"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -xvzf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
||||
mv $PRGNAM $PRGNAM-$VERSION
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
# Delete some useless label (halts the compiler)
|
||||
sed -i -e '/TODO/d' -e '/default\:/d' decpcap.c
|
||||
|
||||
# Modify the Makefile
|
||||
sed -i -e 's:/usr/share/man/:/usr/man/:' Makefile
|
||||
|
||||
# Use ARCH defined CFLAGS
|
||||
sed -i -e "s/-O2/${SLKCFLAGS}/" Makefile
|
||||
|
||||
# make temp directories
|
||||
mkdir -p $PKG/usr/bin
|
||||
mkdir -p $PKG/usr/doc
|
||||
mkdir -p $PKG/usr/man/man8
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : \
|
||||
| xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
gzip -9 $PKG/usr/man/man?/*.?
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cd $TMP/$PRGNAM-$VERSION/
|
||||
cp -a DESIGN Changelog INSTALL 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
|
8
network/nethogs/nethogs.info
Normal file
8
network/nethogs/nethogs.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="nethogs"
|
||||
VERSION="0.6.0"
|
||||
HOMEPAGE="http://nethogs.sourceforge.net"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/nethogs/nethogs-0.6.0.tar.gz"
|
||||
MD5SUM="d7fc44acd19cb55ee32137540f6a6f0e"
|
||||
MAINTAINER="Michales Michaloudes"
|
||||
EMAIL="korgie@gmail.com"
|
||||
APPROVED="Erik Hanson"
|
19
network/nethogs/slack-desc
Normal file
19
network/nethogs/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
nethogs: NetHogs (a small 'net top' tool)
|
||||
nethogs:
|
||||
nethogs: NetHogs is a small 'net top' tool. Instead of breaking the traffic
|
||||
nethogs: down per protocol or per subnet, like most tools do, it groups
|
||||
nethogs: bandwidth by process. NetHogs does not rely on a special kernel
|
||||
nethogs: module to be loaded. If there's suddenly a lot of network traffic,
|
||||
nethogs: you can fire up NetHogs and immediately see which PID is causing
|
||||
nethogs: this. This makes it easy to indentify programs that have gone wild
|
||||
nethogs: and are suddenly taking up your bandwidth.
|
||||
nethogs:
|
||||
nethogs:
|
Loading…
Reference in a new issue