blob: f5ea1a7762512af5e89eb011668e21140c9f08c3 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/firestarter/firestarter-0.9.0.ebuild,v 1.7 2002/10/07 17:26:59 foser Exp $
IUSE="nls"
#MY_P=firestarter-${PV}
S=${WORKDIR}/${P}
DESCRIPTION="Gui for firewalls (iptables & ipchains), and a firewall monitor."
SRC_URI="mirror://sourceforge/firestarter/${P}.tar.gz"
HOMEPAGE="http://firestarter.sf.net"
LICENSE="GPL-2"
DEPEND="x11-libs/gtk+
gnome-base/libgnomeui
gnome-base/libgnome
sys-apps/iptables
nls? ( sys-devel/gettext )"
RDEPEND="${DEPEND}"
SLOT="0"
KEYWORDS="x86 ppc sparc sparc64"
src_compile() {
local myconf
use nls \
&& myconf="${myconf} --enable-nls" \
|| myconf="${myconf} --disable-nls"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall destdir=${D} graphicsdir=${D}/usr/share/pixmaps || die "einstall failed"
dodoc AUTHORS Changelog README TODO
}
pkg_postinstall() {
./postinstall
}
|