diff options
-rw-r--r-- | libraries/libiptc/README | 11 | ||||
-rw-r--r-- | libraries/libiptc/libiptc.SlackBuild | 80 | ||||
-rw-r--r-- | libraries/libiptc/libiptc.info | 8 | ||||
-rw-r--r-- | libraries/libiptc/slack-desc | 19 |
4 files changed, 118 insertions, 0 deletions
diff --git a/libraries/libiptc/README b/libraries/libiptc/README new file mode 100644 index 0000000000..0d98c5524d --- /dev/null +++ b/libraries/libiptc/README @@ -0,0 +1,11 @@ +libiptc (Extra headers and libraries of iptables) + +It enables programs to communicate with netfilter bypassing iptables + +Iptables can be used to build internet firewalls based on stateless +and stateful packet filtering, use NAT and masquerading for sharing +internet access if you don't have enough public IP addresses, use NAT +to implement transparent proxies, aid the tc and iproute2 systems +used to build sophisticated QoS and policy routers, do further packet +manipulation (mangling) like altering the TOS/DSCP/ECN bits of the IP +header, and much more. diff --git a/libraries/libiptc/libiptc.SlackBuild b/libraries/libiptc/libiptc.SlackBuild new file mode 100644 index 0000000000..2bbd3c441b --- /dev/null +++ b/libraries/libiptc/libiptc.SlackBuild @@ -0,0 +1,80 @@ +#!/bin/sh + +# Slackware build script for libiptc + +# Written by Pablo Oses <opablo@gmail.com> + +PRGNAM=libiptc +VERSION=${VERSION:-1.4.2} +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/iptables-$VERSION.tar.bz2 +cd iptables-$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 \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux \ + --enable-devel \ + --enable-libipq + +make + +mkdir -p $PKG/usr/include/libiptc +cp include/libiptc/* $PKG/usr/include/libiptc +cp include/iptables.h $PKG/usr/include + +mkdir -p $PKG/usr/include/linux/netfilter +cp include/linux/netfilter/nf_nat.h $PKG/usr/include/linux/netfilter +cp include/linux/netfilter/nf_conntrack_tuple.h $PKG/usr/include/linux/netfilter + +mkdir -p $PKG/usr/lib +cp libiptc/libiptc.a $PKG/usr/lib + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + COPYING* INCOMPATIBILITIES INSTALL \ + $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/libraries/libiptc/libiptc.info b/libraries/libiptc/libiptc.info new file mode 100644 index 0000000000..b2a8118def --- /dev/null +++ b/libraries/libiptc/libiptc.info @@ -0,0 +1,8 @@ +PRGNAM="libiptc" +VERSION="1.4.2" +HOMEPAGE="http://www.netfilter.org" +DOWNLOAD="http://www.netfilter.org/projects/iptables/files/iptables-1.4.2.tar.bz2" +MD5SUM="a138d1c2e74321e0e4e228a9fb301c9a" +MAINTAINER="Pablo Oses" +EMAIL="opablo@gmail.com" +APPROVED="dsomero" diff --git a/libraries/libiptc/slack-desc b/libraries/libiptc/slack-desc new file mode 100644 index 0000000000..5a3adf7aac --- /dev/null +++ b/libraries/libiptc/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------------------------------------------------------| +libiptc: libiptc (Extra headers and libraries of iptables) +libiptc: +libiptc: It enables programs to communicate with netfilter bypassing iptables +libiptc: +libiptc: Iptables can be used to build internet firewalls based on stateless +libiptc: and stateful packet filtering, use NAT and masquerading for sharing +libiptc: internet access if you don't have enough public IP addresses, use NAT +libiptc: to implement transparent proxies, aid the tc and iproute2 systems +libiptc: used to build sophisticated QoS and policy routers, do further packet +libiptc: manipulation (mangling) like altering the TOS/DSCP/ECN bits of the IP +libiptc: header, and much more. See: http://www.netfilter.org |