fwbuilder 2.1.17

This commit is contained in:
Micha Glave
2008-03-25 16:17:31 +00:00
parent 5cfaa29a97
commit 500dae5595
4 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST libfwbuilder-2.1.17.tar.gz 318061 RMD160 46807882012209b7a6cd463e0cb3f68aebe3f7df SHA1 695d9cee51d9ae8036296b9bc68f54a656478263 SHA256 3bbbddb5f5e580bd5c5aa0189b54b71677b981fe0e33f1ec55914b5d9e70b829
EBUILD libfwbuilder-2.1.17.ebuild 1363 RMD160 ff04168702105cdd5ccac5a174d16085e8f58c1d SHA1 5ebda309a91612e8197d9c590826619a1b30c3a6 SHA256 3597d7a39fd28ff0bbcec10bf13654655e6a93c8402d0f170b34ed10944f3bb4

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libfwbuilder/libfwbuilder-2.1.14.ebuild,v 1.1 2007/09/29 23:02:52 r3pek Exp $
inherit eutils qt3
DESCRIPTION="Firewall Builder 2.1 API library and compiler framework"
HOMEPAGE="http://www.fwbuilder.org/"
SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="snmp ssl stlport"
DEPEND=">=dev-libs/libxml2-2.4.10
>=dev-libs/libxslt-1.0.7
snmp? ( net-analyzer/net-snmp )
ssl? ( dev-libs/openssl )
stlport? ( dev-libs/STLport )
$(qt_min_version 3)"
src_compile() {
# we'll use our eqmake instead of bundled script to process qmake files
sed -i -e 's:^. ./runqmake.sh$:echo:' configure \
|| die "sed configure failed"
econf $(use_with ssl openssl) \
$(use_with snmp ucdsnmp) \
$(use_with stlport stlport) \
|| die "configure failed"
# use eqmake to generate Makefiles
eqmake3 ${PN}.pro
for subdir in src src/fwbuilder src/fwcompiler src/test src/confscript \
etc doc migration; do
eqmake3 "${subdir}/${subdir##*/}.pro" -o ${subdir}/Makefile
done
emake || die "Compilation failed"
}
src_install() {
emake install DDIR="${D}" || die "Install failed"
cd "${D}"/usr/share/doc/${PF}
rm COPYING INSTALL
prepalldocs
}