summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Robby Workman2013-10-16 05:51:46 +0200
committer Robby Workman2013-10-30 05:31:43 +0100
commit41274b696baf68c3102e3665f244c32d67c1738e (patch)
tree7ff412df4e838974549591e6ccb11b4014e31050 /network
parent029e68e5c401cd1c8d15b399647046260efa02b7 (diff)
downloadslackbuilds-41274b696baf68c3102e3665f244c32d67c1738e.tar.gz
network/ipset: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/ipset/README24
-rw-r--r--network/ipset/doinst.sh4
-rw-r--r--network/ipset/ipset.SlackBuild123
-rw-r--r--network/ipset/ipset.info10
-rw-r--r--network/ipset/slack-desc19
5 files changed, 0 insertions, 180 deletions
diff --git a/network/ipset/README b/network/ipset/README
deleted file mode 100644
index a336094715..0000000000
--- a/network/ipset/README
+++ /dev/null
@@ -1,24 +0,0 @@
-IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel,
-which can be administered by the ipset utility. Depending on the type,
-currently an IP set may store IP addresses, (TCP/UDP) port numbers
-or IP addresses with MAC addresses in a way, which ensures lightning
-speed when matching an entry against a set.
-
-If you want to:
-
-* store multiple IP addresses or port numbers and match against
- the collection by iptables at one swoop;
-* dynamically update iptables rules against IP addresses or ports
- without performance penalty;
-* express complex IP address and ports based rulesets with one
- single iptables rule and benefit from the speed of IP sets
-
-then ipset may be the proper tool for you.
-
-IP sets was written by Jozsef Kadlecsik and it is based on ippool
-by Joakim Axelsson, Patrick Schaaf and Martin Josefsson.
-
-IMPORTANT: ipset package updates the modules without overwriting
-the ones provided by Slackware. If you uninstall ipset package, you
-will need to run 'depmod -a' to regenerate the modules.dep and map
-files to regain access to the Slackware provided versions.
diff --git a/network/ipset/doinst.sh b/network/ipset/doinst.sh
deleted file mode 100644
index 94e10a8cc4..0000000000
--- a/network/ipset/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-# Re-generate modules.dep and map files.
-if [ -x sbin/depmod ]; then
- chroot . /sbin/depmod -a @KERNEL@ 1> /dev/null 2>&1
-fi
diff --git a/network/ipset/ipset.SlackBuild b/network/ipset/ipset.SlackBuild
deleted file mode 100644
index 3607e985cc..0000000000
--- a/network/ipset/ipset.SlackBuild
+++ /dev/null
@@ -1,123 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for ipset
-
-# Copyright 2013 Michal Bialozor, Gdansk, Pomorskie, POLAND
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-PRGNAM=ipset
-VERSION=${VERSION:-6.19}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-KERNEL=${KERNEL:-$(uname -r)}
-
-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.bz2
-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} \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-make modules
-mkdir -p $PKG/lib/modules/$(uname -r)/extra/ipset
-install -m 0644 -D kernel/net/netfilter/ipset/*.ko \
- $PKG/lib/modules/$(uname -r)/extra/ipset
-
-# Make modprobe prefer the new modules in /lib/modules/$KERNEL/extra/ipset/
-# We don't want to install this with a .new suffix, because we want it
-# removed with the package.
-mkdir -p $PKG/etc/depmod.d
-cat << EOF > $PKG/etc/depmod.d/ipset-$KERNEL.conf
-override ip_set $KERNEL extra/ipset
-override ip_set_bitmap_ip $KERNEL extra/ipset
-override ip_set_bitmap_ipmac $KERNEL extra/ipset
-override ip_set_bitmap_port $KERNEL extra/ipset
-override ip_set_hash_ip $KERNEL extra/ipset
-override ip_set_hash_ipport $KERNEL extra/ipset
-override ip_set_hash_ipportip $KERNEL extra/ipset
-override ip_set_hash_ipportnet $KERNEL extra/ipset
-override ip_set_hash_net $KERNEL extra/ipset
-override ip_set_hash_netiface $KERNEL extra/ipset
-override ip_set_hash_netport $KERNEL extra/ipset
-override ip_set_list_set $KERNEL extra/ipset
-EOF
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYING ChangeLog* README UPGRADE $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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/network/ipset/ipset.info b/network/ipset/ipset.info
deleted file mode 100644
index c87f7ca4ac..0000000000
--- a/network/ipset/ipset.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="ipset"
-VERSION="6.19"
-HOMEPAGE="http://ipset.netfilter.org"
-DOWNLOAD="http://ipset.netfilter.org/ipset-6.19.tar.bz2"
-MD5SUM="cabba1bd63a93f6e1c3db3fb22412b64"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="libmnl"
-MAINTAINER="Michal Bialozor"
-EMAIL="bialyy@o2.pl"
diff --git a/network/ipset/slack-desc b/network/ipset/slack-desc
deleted file mode 100644
index c8375b7e6b..0000000000
--- a/network/ipset/slack-desc
+++ /dev/null
@@ -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------------------------------------------------------|
-ipset: ipset (administration tool for IP sets)
-ipset:
-ipset: IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel, which
-ipset: can be administered by the ipset utility. Depending on the type,
-ipset: currently an IP set may store IP addresses, (TCP/UDP) port numbers
-ipset: or IP addresses with MAC addresses in a way, which ensures lightning
-ipset: speed when matching an entry against a set.
-ipset:
-ipset: Homepage: http://ipset.netfilter.org/
-ipset:
-ipset: