mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/phrel: Added to 12.0 repository
This commit is contained in:
parent
a9c294f0ea
commit
979595b4a7
4 changed files with 110 additions and 0 deletions
12
network/phrel/README
Normal file
12
network/phrel/README
Normal file
|
@ -0,0 +1,12 @@
|
|||
PHREL is a Per Host RatE Limiter.
|
||||
|
||||
It will track the rate of incoming traffic to a server and insert
|
||||
insert a chain into iptables when a configured threshold is crossed.
|
||||
The inserted chain may either rate limit or block the offending host
|
||||
for a period of time.
|
||||
|
||||
It is particularly well suited to protecting nameservers (DNS) from
|
||||
random flood requests.
|
||||
|
||||
Please see: phreld(1) and phreld.conf(5) for post-install configuration,
|
||||
and /etc/rc.d/rc.local for daemon auto-start.
|
71
network/phrel/phrel.SlackBuild
Normal file
71
network/phrel/phrel.SlackBuild
Normal file
|
@ -0,0 +1,71 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for phrel
|
||||
# Written by Menno Duursma <druiloor@zonnet.nl>
|
||||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
|
||||
PRGNAM=phrel
|
||||
VERSION=0.9.6
|
||||
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
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
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 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man
|
||||
|
||||
make all
|
||||
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 [A-Z][A-Z]* ChangeLog docs/* mibs $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/phrel/phrel.info
Normal file
8
network/phrel/phrel.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="phrel"
|
||||
VERSION="0.9.6"
|
||||
HOMEPAGE="http://www.digitalgenesis.com/software/phrel/"
|
||||
DOWNLOAD="ftp://ftp.digitalgenesis.com/pub/phrel/phrel-0.9.6.tar.gz"
|
||||
MD5SUM="b7513cad3ba8434ebf61452ff4a26c2e"
|
||||
MAINTAINER="Menno Duursma"
|
||||
EMAIL="druiloor@zonnet.nl"
|
||||
APPROVED="rworkman"
|
19
network/phrel/slack-desc
Normal file
19
network/phrel/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------------------------------------------------------|
|
||||
phrel: PHREL (Per Host RatE Limiter)
|
||||
phrel:
|
||||
phrel: PHREL tracks the rate of incoming traffic to a server and inserts
|
||||
phrel: a chain into iptables when a configured threshold is crossed.
|
||||
phrel: The inserted chain may either rate limit or block the offending host
|
||||
phrel: for a period of time.
|
||||
phrel:
|
||||
phrel: phrel is maintained by James Sella of http://www.digitalgenesis.com
|
||||
phrel:
|
||||
phrel:
|
||||
phrel:
|
Loading…
Reference in a new issue