network/shorewall-common: Removed from 13.0 repository

This commit is contained in:
Heinz Wiesinger 2010-05-13 00:08:56 +02:00
parent 92272b77c7
commit e2d8740a61
5 changed files with 0 additions and 198 deletions

View file

@ -1,10 +0,0 @@
Shorewall (Iptables Made Easy)
The Shoreline Firewall, more commonly known as "Shorewall", is a
Netfilter (iptables) based firewall that can be used on a dedicated
firewall system, a multi-function gateway/router/server or on a
standalone GNU/Linux system.
Common files for the shorewall firewall compilers
You will need at least one of the compiler packages (shorewall-perl
or shorewall-shell) to use shorewall.

View file

@ -1,64 +0,0 @@
config() {
NEW="$1"
OLD="${NEW%*.new}"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
# Keep same perms on rc.firewall.new:
if [ -e etc/rc.d/rc.firewall ]; then
cp -a etc/rc.d/rc.firewall etc/rc.d/rc.firewall.new.incoming
cat etc/rc.d/rc.firewall.new > etc/rc.d/rc.firewall.new.incoming
mv etc/rc.d/rc.firewall.new.incoming etc/rc.d/rc.firewall.new
fi
# Keep same perms on rc.shorewall.new:
if [ -e etc/rc.d/rc.shorewall ]; then
cp -a etc/rc.d/rc.shorewall etc/rc.d/rc.shorewall.new.incoming
cat etc/rc.d/rc.shorewall.new > etc/rc.d/rc.shorewall.new.incoming
mv etc/rc.d/rc.shorewall.new.incoming etc/rc.d/rc.shorewall.new
fi
config etc/rc.d/rc.firewall.new
config etc/rc.d/rc.shorewall.new
config etc/shorewall/accounting.new
config etc/shorewall/actions.new
config etc/shorewall/blacklist.new
config etc/shorewall/continue.new
config etc/shorewall/ecn.new
config etc/shorewall/hosts.new
config etc/shorewall/init.new
config etc/shorewall/initdone.new
config etc/shorewall/interfaces.new
config etc/shorewall/ipsec.new
config etc/shorewall/maclist.new
config etc/shorewall/masq.new
config etc/shorewall/nat.new
config etc/shorewall/netmap.new
config etc/shorewall/notrack.new
config etc/shorewall/params.new
config etc/shorewall/policy.new
config etc/shorewall/providers.new
config etc/shorewall/proxyarp.new
config etc/shorewall/restored.new
config etc/shorewall/route_rules.new
config etc/shorewall/routestopped.new
config etc/shorewall/rules.new
config etc/shorewall/shorewall.conf.new
config etc/shorewall/start.new
config etc/shorewall/started.new
config etc/shorewall/stop.new
config etc/shorewall/stopped.new
config etc/shorewall/tcclasses.new
config etc/shorewall/tcdevices.new
config etc/shorewall/tcfilters.new
config etc/shorewall/tcrules.new
config etc/shorewall/tos.new
config etc/shorewall/tunnels.new
config etc/shorewall/zones.new

View file

@ -1,97 +0,0 @@
#!/bin/sh
# Slackware build script for shorewall-common
# Copyright (c) 2008-2009 Gregory J.L. Tourte (artourter@gmail.com)
# 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=shorewall-common
VERSION=${VERSION:-4.2.10}
ARCH=noarch
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
BASEVERS=4.2.10
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -e # Exit on most errors
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$BASEVERS
tar xvf $CWD/$PRGNAM-$BASEVERS.tar.bz2
cd $TMP/$PRGNAM-$BASEVERS
chown -R root:root .
# Patch the base against all the patchlevel patches in order if present
if [ $(ls $CWD/patches 2>/dev/null | wc -l) -gt 0 ]; then
for PATCH in $CWD/patches/* ; do
patch -p1 < $PATCH
done
fi
PREFIX=$PKG \
OWNER='root' \
GROUP='root' \
DEST=/etc/rc.d \
MANDIR=/usr/man \
SLACKWARE=yes \
./install.sh
# Don't clobber config files
( cd $PKG/etc/shorewall
for i in $(ls|grep -v Makefile) ; do
mv $i $i.new;
done
)
( cd $PKG/etc/rc.d/
mv rc.firewall rc.firewall.new
mv rc.shorewall rc.shorewall.new
)
mkdir -p $PKG/var/lock/subsys
chmod 0755 $PKG/{etc,usr/share,var/lib}/shorewall $PKG/var/lock/subsys
chmod 0644 $PKG/etc/shorewall/* $PKG/etc/rc.d/*
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
COPYING INSTALL changelog.txt releasenotes.txt tunnel ipsecvpn Samples \
$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.tgz
# Clean up the extra stuff:
if [ "$1" = "--cleanup" ]; then
rm -rf $TMP/$PRGNAM-$BASEVERS
rm -rf $PKG
fi
# vim: et ts=2

View file

@ -1,8 +0,0 @@
PRGNAM="shorewall-common"
VERSION="4.2.10"
HOMEPAGE="http://www.shorewall.net"
DOWNLOAD="http://www.shorewall.net/pub/shorewall/4.2/shorewall-4.2.10/base/shorewall-common-4.2.10.tar.bz2"
MD5SUM="49bdbbae8dec65154c4e5538ed3c9865"
MAINTAINER="ArTourter"
EMAIL="artourter@gmail.com"
APPROVED="rworkman"

View file

@ -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---------------------------------------------|
shorewall-common: Shorewall (Iptables Made Easy)
shorewall-common:
shorewall-common: The Shoreline Firewall, more commonly known as "Shorewall",
shorewall-common: is a Netfilter (iptables) based firewall that can be used on
shorewall-common: a dedicated firewall system, a multi-function gateway /
shorewall-common: router / server, or on a standalone GNU/Linux system.
shorewall-common: This package contains common files required by both the
shorewall-common: shorewall-perl and shorewall-shell compilers for Shoreline.
shorewall-common:
shorewall-common: http://www.shorewall.net/
shorewall-common: