diff options
author | 2002-11-04 13:42:19 +0000 | |
---|---|---|
committer | 2002-11-04 13:42:19 +0000 | |
commit | a0d526558a5fc727d217f3821caa0da913943931 (patch) | |
tree | c4e644e3c0efdbd0330a99778cabd4ee91f48cba /net-misc | |
parent | fix for >=qt-3.1 (diff) | |
download | gentoo-2-a0d526558a5fc727d217f3821caa0da913943931.tar.gz gentoo-2-a0d526558a5fc727d217f3821caa0da913943931.tar.bz2 gentoo-2-a0d526558a5fc727d217f3821caa0da913943931.zip |
Version bump.
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/fwbuilder/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/fwbuilder/files/digest-fwbuilder-1.0.7 | 1 | ||||
-rw-r--r-- | net-misc/fwbuilder/fwbuilder-1.0.6.ebuild | 2 | ||||
-rw-r--r-- | net-misc/fwbuilder/fwbuilder-1.0.7.ebuild | 52 |
4 files changed, 60 insertions, 2 deletions
diff --git a/net-misc/fwbuilder/ChangeLog b/net-misc/fwbuilder/ChangeLog index c125a76ba732..ae471512f7d7 100644 --- a/net-misc/fwbuilder/ChangeLog +++ b/net-misc/fwbuilder/ChangeLog @@ -1,6 +1,11 @@ # 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.8 2002/10/04 01:28:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/fwbuilder/ChangeLog,v 1.9 2002/11/04 13:42:19 aliz Exp $ + +*fwbuilder-1.0.7 (04 Nov 2002) + + 04 Nov 2002; Daniel Ahlberg <aliz@gentoo.org> : + Version bump. Found by AutoBot <autobot@midsouth.rr.com> in #10085. *fwbuilder-1.0.6 (03 Oct 2002) diff --git a/net-misc/fwbuilder/files/digest-fwbuilder-1.0.7 b/net-misc/fwbuilder/files/digest-fwbuilder-1.0.7 new file mode 100644 index 000000000000..89a0038c7622 --- /dev/null +++ b/net-misc/fwbuilder/files/digest-fwbuilder-1.0.7 @@ -0,0 +1 @@ +MD5 8c0fe7783d8c30a1e76ed3bf673e9175 fwbuilder-1.0.7.tar.gz 1165939 diff --git a/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild b/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild index a570bcdfdbb7..a2b812b034bc 100644 --- a/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild +++ b/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /home/cvsroot/gentoo-x86/net-misc/fwbuilder/fwbuilder-1.0.4.ebuild,v 1.0 +# $Header: /var/cvsroot/gentoo-x86/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild,v 1.3 2002/11/04 13:42:19 aliz Exp $ DESCRIPTION="A firewall GUI" SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz" diff --git a/net-misc/fwbuilder/fwbuilder-1.0.7.ebuild b/net-misc/fwbuilder/fwbuilder-1.0.7.ebuild new file mode 100644 index 000000000000..220eea43cd0e --- /dev/null +++ b/net-misc/fwbuilder/fwbuilder-1.0.7.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-misc/fwbuilder/fwbuilder-1.0.7.ebuild,v 1.1 2002/11/04 13:42:19 aliz Exp $ + +DESCRIPTION="A firewall GUI" +SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz" +HOMEPAGE="http://fwbuilder.sourceforge.net/" +S=${WORKDIR}/${P} + +KEYWORDS="~x86 ~sparc ~sparc64" +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=x11-libs/gtkmm-1.2.8 + >=dev-libs/libxslt-1.0.7 + >=net-libs/libfwbuilder-0.10.11 + 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." +} + |