diff options
author | Tilman Klar <phoenix@gentoo.org> | 2002-07-10 15:11:39 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2002-07-10 15:11:39 +0000 |
commit | f40e124c43ac7973231eff99eff28f4ad4a5e1cb (patch) | |
tree | 38eea35e25ce79bd3e713bdfbf5582e37f621ba6 /net-misc | |
parent | added KEYWORDS LICENSE and SLOT for QA happiness (diff) | |
download | gentoo-2-f40e124c43ac7973231eff99eff28f4ad4a5e1cb.tar.gz gentoo-2-f40e124c43ac7973231eff99eff28f4ad4a5e1cb.tar.bz2 gentoo-2-f40e124c43ac7973231eff99eff28f4ad4a5e1cb.zip |
Bumped to new version.
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/fwbuilder/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/fwbuilder/files/digest-fwbuilder-1.0.3 | 1 | ||||
-rw-r--r-- | net-misc/fwbuilder/fwbuilder-1.0.3.ebuild | 40 |
3 files changed, 48 insertions, 1 deletions
diff --git a/net-misc/fwbuilder/ChangeLog b/net-misc/fwbuilder/ChangeLog index d8e298cf1a62..000464d20425 100644 --- a/net-misc/fwbuilder/ChangeLog +++ b/net-misc/fwbuilder/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/fwbuilder # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/fwbuilder/ChangeLog,v 1.4 2002/07/07 06:47:50 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/fwbuilder/ChangeLog,v 1.5 2002/07/10 15:11:39 phoenix Exp $ + +*fwbuilder-1.0.3 (10 July 2002) + + 10 Jul 2002; phoen][x <phoenix@gentoo.org> fwbuilder-1.0.3.ebuild : + Bumped to new version. Thanks to Artur Wanzel <t1ck@bonetmail.com> + for the contribution. *fwbuilder-1.0.1 (30 Mar 2002) diff --git a/net-misc/fwbuilder/files/digest-fwbuilder-1.0.3 b/net-misc/fwbuilder/files/digest-fwbuilder-1.0.3 new file mode 100644 index 000000000000..71785d0ff64c --- /dev/null +++ b/net-misc/fwbuilder/files/digest-fwbuilder-1.0.3 @@ -0,0 +1 @@ +MD5 b5e23a38a3d3bf967bcac7b166596f55 fwbuilder-1.0.3.tar.gz 981891 diff --git a/net-misc/fwbuilder/fwbuilder-1.0.3.ebuild b/net-misc/fwbuilder/fwbuilder-1.0.3.ebuild new file mode 100644 index 000000000000..eb0efec36dbc --- /dev/null +++ b/net-misc/fwbuilder/fwbuilder-1.0.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Artur Wanzel <t1ck@bonetmail.com> +# $Header: /var/cvsroot/gentoo-x86/net-misc/fwbuilder/fwbuilder-1.0.3.ebuild,v 1.1 2002/07/10 15:11:39 phoenix Exp $ + +DESCRIPTION="A firewall GUI" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +KEYWORDS="x86" +LICENSE="GPL-2" +SLOT="0" +HOMEPAGE="http://fwbuilder.sourceforge.net" + +DEPEND=">=x11-libs/gtkmm-1.2.5-r1 + >=dev-libs/libxslt-1.0.1 + >=net-libs/libfwbuilder-0.10.7 + media-libs/gdk-pixbuf + dev-libs/libxml2" + +src_compile() { + local myconf + use static && myconf="${myconf} --enable-shared=no --enable-static=yes" + + ./configure \ + --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" +} |