diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-01-13 13:44:51 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-01-13 13:44:51 +0000 |
commit | ff2bffb83335e94f8362c2788e4be90c109bda8e (patch) | |
tree | 9b9aa80f8d4ac9245fb712d5effa1423113af083 /net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild | |
parent | stable on hppa and sparc (diff) | |
download | gentoo-2-ff2bffb83335e94f8362c2788e4be90c109bda8e.tar.gz gentoo-2-ff2bffb83335e94f8362c2788e4be90c109bda8e.tar.bz2 gentoo-2-ff2bffb83335e94f8362c2788e4be90c109bda8e.zip |
Unmasks and ebuild cleanups
Diffstat (limited to 'net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild')
-rw-r--r-- | net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild b/net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild deleted file mode 100644 index 3a9a0f286272..000000000000 --- a/net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libfwbuilder/libfwbuilder-1.0.0.ebuild,v 1.5 2003/09/10 04:55:33 msterret Exp $ - -IUSE="ssl static" - -DESCRIPTION="A firewall GUI (library functions)" -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="sys-devel/autoconf - =dev-libs/glib-1.2* - >=dev-libs/libxml2-2.4.19 - !=dev-libs/libxml2-2.4.25 - >=dev-libs/libxslt-1.0.15 - snmp? ( virtual/snmp ) - ssl? ( dev-libs/openssl )" - -src_compile() { - local myconf - - use static && myconf="${myconf} --disable-shared --enable-static=yes" - use ssl || myconf="${myconf} --without-openssl" - - ./autogen.sh \ - --prefix=/usr \ - --host=${CHOST} \ - ${myconf} || die "./configure failed" - - 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" - prepalldocs -} |