diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-12-07 18:59:08 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-12-07 18:59:08 +0000 |
commit | 205dbe2d2592158f41293975f1e54fa6d0c302f7 (patch) | |
tree | 5f0ea4d18d5cade8593ef50c6ec4cde574af129d /net-firewall/firestarter/firestarter-0.9.2-r1.ebuild | |
parent | add patch to fix 2.6 kernel problem (diff) | |
download | gentoo-2-205dbe2d2592158f41293975f1e54fa6d0c302f7.tar.gz gentoo-2-205dbe2d2592158f41293975f1e54fa6d0c302f7.tar.bz2 gentoo-2-205dbe2d2592158f41293975f1e54fa6d0c302f7.zip |
add patch to fix 2.6 kernel problem
Diffstat (limited to 'net-firewall/firestarter/firestarter-0.9.2-r1.ebuild')
-rw-r--r-- | net-firewall/firestarter/firestarter-0.9.2-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/net-firewall/firestarter/firestarter-0.9.2-r1.ebuild b/net-firewall/firestarter/firestarter-0.9.2-r1.ebuild new file mode 100644 index 000000000000..226619a3dc92 --- /dev/null +++ b/net-firewall/firestarter/firestarter-0.9.2-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firestarter/firestarter-0.9.2-r1.ebuild,v 1.1 2003/12/07 18:59:03 foser Exp $ + +inherit gnome2 eutils + +IUSE="nls" + +DESCRIPTION="GUI for iptables firewall setup and monitor." +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://firestarter.sf.net" +LICENSE="GPL-2" + +RDEPEND=">=x11-libs/gtk+-2 + >=gnome-base/libgnomeui-2 + >=gnome-base/libgnome-2 + net-firewall/iptables" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + dev-util/pkgconfig + >=dev-util/intltool-0.21" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" + +src_unpack() { + + unpack ${A} + + cd ${S} + # make firestarter not choke on 2.6 kernels (#32903) + # patch from http://firestarter.sf.net/beta/firestarter-kernel-2.6.patch + epatch ${FILESDIR}/${P}-kernel_2.6_fix.patch + +} + +src_compile() { + + econf "`use_enable nls`" || die "econf failed" + emake || die "emake failed" + +} + +src_install() { + + einstall destdir=${D} graphicsdir=${D}/usr/share/pixmaps || \ + die "einstall failed" + + dodoc AUTHORS ChangeLog COPYING CREDITS INSTALL README TODO + +} + +pkg_postinstall() { + + ./postinstall + +} |