diff options
author | 2003-06-13 04:21:02 +0000 | |
---|---|---|
committer | 2003-06-13 04:21:02 +0000 | |
commit | ff67840b2f68211c54c217d794f215e86d7b26e4 (patch) | |
tree | cbab8116f071377704e52e2e13e92a1e1e2c1dc8 /net-firewall/firestarter/firestarter-0.9.2.ebuild | |
parent | version bump (diff) | |
download | historical-ff67840b2f68211c54c217d794f215e86d7b26e4.tar.gz historical-ff67840b2f68211c54c217d794f215e86d7b26e4.tar.bz2 historical-ff67840b2f68211c54c217d794f215e86d7b26e4.zip |
version bump
Diffstat (limited to 'net-firewall/firestarter/firestarter-0.9.2.ebuild')
-rw-r--r-- | net-firewall/firestarter/firestarter-0.9.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-firewall/firestarter/firestarter-0.9.2.ebuild b/net-firewall/firestarter/firestarter-0.9.2.ebuild new file mode 100644 index 000000000000..d335e0810f09 --- /dev/null +++ b/net-firewall/firestarter/firestarter-0.9.2.ebuild @@ -0,0 +1,39 @@ +# 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.ebuild,v 1.1 2003/06/13 04:20:58 msterret 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/intltool-0.21" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" + +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 +} |