# 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-0.10.11.ebuild,v 1.5 2003/06/12 21:26:38 msterret Exp $ IUSE="ssl static" DESCRIPTION="A firewall GUI (library functions)" SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz" HOMEPAGE="http://fwbuilder.sourceforge.net/" S=${WORKDIR}/${P} KEYWORDS="x86 ~sparc" LICENSE="GPL-2" SLOT="0" DEPEND="=dev-libs/libsigc++-1.0* >=dev-libs/libxslt-1.0.7 >=net-analyzer/ucd-snmp-4.2.3 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 }