summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Robby Workman2013-10-16 05:53:02 +0200
committer Robby Workman2013-10-30 05:31:43 +0100
commit61244bbb45471f02cbecec9e2ab19307f6b9d972 (patch)
tree8496dce30aea4aff999b8d6c8acc42133f01d758 /network
parent6220eb8426a637e4f51a3691a7d66318bc083aa9 (diff)
downloadslackbuilds-61244bbb45471f02cbecec9e2ab19307f6b9d972.tar.gz
network/conntrack-tools: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/conntrack-tools/README8
-rw-r--r--network/conntrack-tools/conntrack-tools.SlackBuild106
-rw-r--r--network/conntrack-tools/conntrack-tools.info10
-rw-r--r--network/conntrack-tools/slack-desc19
4 files changed, 0 insertions, 143 deletions
diff --git a/network/conntrack-tools/README b/network/conntrack-tools/README
deleted file mode 100644
index 207278f5b5..0000000000
--- a/network/conntrack-tools/README
+++ /dev/null
@@ -1,8 +0,0 @@
-The conntrack-tools are a set of tools targeted at system administrators.
-They are conntrack, the userspace command line interface, and conntrackd,
-the userspace daemon. The tool conntrack provides a full featured interface
-that is intended to replace the old /proc/net/ip_conntrack interface. Using
-conntrack, you can view and manage the in-kernel connection tracking state
-table from userspace. On the other hand, conntrackd covers the specific
-aspects of stateful firewalls to enable highly available scenarios, and can
-be used as statistics collector as well.
diff --git a/network/conntrack-tools/conntrack-tools.SlackBuild b/network/conntrack-tools/conntrack-tools.SlackBuild
deleted file mode 100644
index e674c5ffec..0000000000
--- a/network/conntrack-tools/conntrack-tools.SlackBuild
+++ /dev/null
@@ -1,106 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for conntrack-tools
-
-# Copyright 2006-2011 Robby Workman, Northport, Alabama, USA
-# 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=conntrack-tools
-VERSION=${VERSION:-1.2.2}
-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}
-
-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 .
-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/conntrackd \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --enable-static=no \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-mkdir -p $PKG/etc/conntrackd
-cat doc/stats/conntrackd.conf > $PKG/etc/conntrackd/conntrackd.conf.sample
-
-find $PKG | xargs 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 {} \;
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING INSTALL TODO doc/cli doc/sync doc/manual \
- $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.${PKGTYPE:-tgz}
diff --git a/network/conntrack-tools/conntrack-tools.info b/network/conntrack-tools/conntrack-tools.info
deleted file mode 100644
index e3d1d8b110..0000000000
--- a/network/conntrack-tools/conntrack-tools.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="conntrack-tools"
-VERSION="1.2.2"
-HOMEPAGE="http://conntrack-tools.netfilter.org/"
-DOWNLOAD="http://www.netfilter.org/projects/conntrack-tools/files/conntrack-tools-1.2.2.tar.bz2"
-MD5SUM="a8afc813e16265655f83991fc0df35b6"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="libnetfilter_conntrack"
-MAINTAINER="Michal Bialozor"
-EMAIL="bialyy@o2.pl"
diff --git a/network/conntrack-tools/slack-desc b/network/conntrack-tools/slack-desc
deleted file mode 100644
index 294fa15ed3..0000000000
--- a/network/conntrack-tools/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------------------------------------------------------|
-conntrack-tools: conntrack-tools (userspace tools for conntrack)
-conntrack-tools:
-conntrack-tools: The conntrack-tools are a set of userspace tools that allow
-conntrack-tools: system administrators to interact with the Connection
-conntrack-tools: Tracking System (the module that provides stateful packet
-conntrack-tools: inspection for iptables).
-conntrack-tools:
-conntrack-tools: The conntrack-tools include the userspace daemon conntrackd
-conntrack-tools: and the command line interface conntrack.
-conntrack-tools:
-conntrack-tools: