diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-01-06 12:46:17 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-01-06 12:46:17 +0000 |
commit | 43b1d76f93f3165880ce04aab9513c49fe7d3bd7 (patch) | |
tree | 74f64204d969210f2af5e5052765fbb7483a4eee /net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild | |
parent | added net-firewall (diff) | |
download | gentoo-2-43b1d76f93f3165880ce04aab9513c49fe7d3bd7.tar.gz gentoo-2-43b1d76f93f3165880ce04aab9513c49fe7d3bd7.tar.bz2 gentoo-2-43b1d76f93f3165880ce04aab9513c49fe7d3bd7.zip |
moved from net-misc to net-firewall
Diffstat (limited to 'net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild')
-rw-r--r-- | net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild b/net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild new file mode 100644 index 000000000000..0e60a8013a20 --- /dev/null +++ b/net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/fwbuilder/fwbuilder-1.0.8.ebuild,v 1.1 2003/01/06 12:46:17 mholzer Exp $ + +DESCRIPTION="A firewall GUI" +SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz" +HOMEPAGE="http://www.fwbuilder.org/" +S=${WORKDIR}/${P} + +KEYWORDS="~x86 ~sparc" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="=x11-libs/gtkmm-1.2* + >=dev-libs/libxslt-1.0.7 + >=net-libs/libfwbuilder-0.10.12 + media-libs/gdk-pixbuf + dev-libs/libxml2 + =dev-libs/libsigc++-1.0*" +RDEPEND="sys-apps/iproute" + +src_compile() { + local myconf + myconf="--with-gnu-ld" + use static && myconf="${myconf} --enable-shared=no --enable-static=yes" + use nls || myconf="${myconf} --disable-nls" + use pic && myconf="${myconf} --with-pic" + + ./autogen.sh \ + --prefix=/usr \ + --host=${CHOST} || die "./configure failed" + + cp config.h config.h.orig + sed -e "s:#define HAVE_XMLSAVEFORMATFILE 1://:" config.h.orig > config.h + + if [ "`use static`" ] + then + emake LDFLAGS="-static" || die "emake LDFLAGS failed" + else + emake || die "emake failed" + fi +} + +src_install() { + emake DESTDIR=${D} install || die "emake install failed" +} + +pkg_postinst() { + einfo "You may have to install iproute on the machine that" + einfo "will run the firewall script." +} + |