diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-10-04 01:29:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-10-04 01:29:01 +0000 |
commit | aa436f12ce27d919e763af07794b6d97d4f8f3ba (patch) | |
tree | 31ce577890832ade60fb3cc92bc155eb14bf3ce9 /net-misc | |
parent | Adding package commonbox-styles-extra (diff) | |
download | historical-aa436f12ce27d919e763af07794b6d97d4f8f3ba.tar.gz historical-aa436f12ce27d919e763af07794b6d97d4f8f3ba.tar.bz2 historical-aa436f12ce27d919e763af07794b6d97d4f8f3ba.zip |
Version bump + fixes for #6926 #8381 #8709 #6765
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/fwbuilder/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/fwbuilder/files/digest-fwbuilder-1.0.6 | 1 | ||||
-rw-r--r-- | net-misc/fwbuilder/fwbuilder-1.0.6.ebuild | 51 |
3 files changed, 59 insertions, 1 deletions
diff --git a/net-misc/fwbuilder/ChangeLog b/net-misc/fwbuilder/ChangeLog index 9c45be119d32..c125a76ba732 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.7 2002/08/05 09:05:24 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/fwbuilder/ChangeLog,v 1.8 2002/10/04 01:28:40 vapier Exp $ + +*fwbuilder-1.0.6 (03 Oct 2002) + + 03 Oct 2002; Mike Frysinger <vapier@gentoo.org> fwbuilder-1.0.6.ebuild : + Version bump to take care of (ignore #6926 #8381 #8709), + added libsigc++ to DEPEND, added iproute to RDEPEND #6765 *fwbuilder-1.0.4 (05 Aug 2002) diff --git a/net-misc/fwbuilder/files/digest-fwbuilder-1.0.6 b/net-misc/fwbuilder/files/digest-fwbuilder-1.0.6 new file mode 100644 index 000000000000..4daa0f9f9063 --- /dev/null +++ b/net-misc/fwbuilder/files/digest-fwbuilder-1.0.6 @@ -0,0 +1 @@ +MD5 fc09b20c22f84b6bd19a08320555534a fwbuilder-1.0.6.tar.gz 1154386 diff --git a/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild b/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild new file mode 100644 index 000000000000..f2f7272be533 --- /dev/null +++ b/net-misc/fwbuilder/fwbuilder-1.0.6.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /home/cvsroot/gentoo-x86/net-misc/fwbuilder/fwbuilder-1.0.4.ebuild,v 1.0 + +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.8 + 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." +} |