blob: dc384d25452f3f0da6102f00f15edf3e4e42b4f4 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-1.4.6-r3.ebuild,v 1.6 2003/11/02 15:59:39 mholzer Exp $
DESCRIPTION="Full state iptables firewall"
HOMEPAGE="http://www.shorewall.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}c.tgz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
DEPEND="virtual/glibc
net-firewall/iptables
sys-apps/iproute"
S=${WORKDIR}/${P}c
src_install() {
keepdir /var/lib/shorewall
PREFIX=${D} ./install.sh /etc/init.d || die
exeinto /etc/init.d
newexe ${FILESDIR}/shorewall shorewall
dohtml -r documentation/*
}
pkg_postinst() {
einfo "Read the documentation from http://www.shorewall.net"
einfo "available at /usr/share/doc/${PF}/html/index.htm"
einfo "and edit the files in /etc/shorewall before starting the firewall"
}
|