blob: e8f284f7cb2ea7384044dd6c25eaf0a64b2de2bd (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/firestarter/firestarter-1.0.3.ebuild,v 1.3 2005/06/12 16:04:02 kloeri Exp $
inherit gnome2
DESCRIPTION="GUI for iptables firewall setup and monitor."
HOMEPAGE="http://www.fs-security.com/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
IUSE="nls"
RDEPEND=">=x11-libs/gtk+-2
>=gnome-base/libgnomeui-2
>=gnome-base/libgnome-2
net-firewall/iptables
nls? ( sys-devel/gettext )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.21"
DOCS="AUTHORS ChangeLog CREDITS INSTALL README TODO"
src_install() {
gnome2_src_install
newinitd "${FILESDIR}/${P}" "${PN}"
}
pkg_postinst() {
gnome2_pkg_postinst
echo
einfo "Run /usr/bin/firestarter to configure and setup the firewall"
einfo "If you would like to have firestarter start automatically,"
einfo "add the init script to the default runlevel:"
einfo " rc-update add firestarter default"
echo
ewarn "If you are upgrading from a previous version of ${PN}"
ewarn "be aware that ${P} doesn't allow LAN connections to the"
ewarn "firewall machine by default."
ewarn "You must explicitly set policy to allow connections from"
ewarn "the LAN to the firewall box."
echo
}
|