blob: f718f2580b8b1c62fc02253e70a60482f9644ddb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/lutelwall/lutelwall-0.99.ebuild,v 1.3 2005/09/15 23:14:36 agriffis Exp $
DESCRIPTION="High-level tool for firewall configuration"
HOMEPAGE="http://firewall.lutel.pl"
SRC_URI="http://firewall.lutel.pl/download/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND=">=net-firewall/iptables-1.2.6
sys-apps/iproute2
>=sys-apps/gawk-3.1"
src_install() {
insinto /etc ; doins lutelwall.conf
dosbin lutelwall
exeinto /etc/init.d ; doexe ${FILESDIR}/lutelwall
dodoc FEATURES ChangeLog
}
pkg_postinst() {
einfo "Basic configuration file is /etc/lutelwall.conf"
einfo "Adjust it to your needs before using"
}
|