blob: 12df4e383edaafb0239de03de1818c0092dc4234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/gshield/gshield-2.8-r2.ebuild,v 1.7 2006/04/03 01:20:23 deltacow Exp $
# re-capitalize gShield
S=${WORKDIR}/gShield-${PV}
DESCRIPTION="iptables firewall configuration system"
HOMEPAGE="http://muse.linuxmafia.org/gshield.html"
SRC_URI="ftp://muse.linuxmafia.org/pub/gShield/v2/gShield-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
RDEPEND="net-firewall/iptables
net-dns/bind-tools"
src_install() {
# config files
dodir /etc/gshield
cp -pPR * ${D}/etc/gshield
ln -s gshield ${D}/etc/firewall
# get rid of docs from config
rm -rf ${D}/etc/gshield/{Changelog,INSTALL,LICENSE,docs}
# move non-config stuff out of config, but make symlinks
dodir /usr/share/gshield/routables
for q in gShield-version gShield.rc tools sourced routables/routable.rules
do
mv ${D}/etc/gshield/$q ${D}/usr/share/gshield/
ln -s /usr/share/gshield/$q ${D}/etc/gshield/$q
done
chmod -R u+rwX ${D}/etc/gshield
# install init script
dodir /etc/init.d
cp ${FILESDIR}/gshield.init ${D}/etc/init.d/gshield
chmod -R u+rwx ${D}/etc/init.d/gshield
# docs
dodoc Changelog INSTALL LICENSE docs/*
}
pkg_postinst() {
einfo
einfo "Before running /etc/init.d/gshield or adding it to a runlevel with"
einfo "rc-update, be sure to edit the firewall config file so that it will"
einfo "work for your site:"
einfo " ${EDITOR} /etc/gshield/gShield.conf"
einfo
}
|