fwbuilder 2.1.17
This commit is contained in:
3
net-firewall/fwbuilder/Manifest
Normal file
3
net-firewall/fwbuilder/Manifest
Normal file
@@ -0,0 +1,3 @@
|
||||
AUX fwbuilder-2.1.13-build-with-external-antlr.patch 2231 RMD160 9356ee2f594189bda1e5b3e9776258ea9358fa9f SHA1 e4c906033690160437b6722038d58ab94b2d36a8 SHA256 8f5e490b90ad1a30104c0103cbd23c6cc66739fb152b0263beea5e56678f8599
|
||||
DIST fwbuilder-2.1.17.tar.gz 1889486 RMD160 7a0ed1d8fd514b88cf0bdd05e0505651a9e6911e SHA1 af1898248826151c21566f5994a2f0506c63f6f5 SHA256 45d48d1e3106cdee6ff023cd0dffbd4b17e3e7b6be32f4fc3a7c5f9f22d40b54
|
||||
EBUILD fwbuilder-2.1.17.ebuild 1943 RMD160 61123dfdc4c2dbcd8aa3e3116423ced1fa6be821 SHA1 437a8f8498ec1b568c56b6af3a4e27dffaca0672 SHA256 5d4d0faf9cbb362d2a054db68b01373610518e7f8b03c01197628feef62ae72b
|
64
net-firewall/fwbuilder/fwbuilder-2.1.17.ebuild
Normal file
64
net-firewall/fwbuilder/fwbuilder-2.1.17.ebuild
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/net-firewall/fwbuilder/fwbuilder-2.1.14.ebuild,v 1.1 2007/09/29 23:04:46 r3pek Exp $
|
||||
|
||||
inherit eutils qt3 autotools
|
||||
|
||||
DESCRIPTION="A firewall GUI"
|
||||
HOMEPAGE="http://www.fwbuilder.org/"
|
||||
SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
||||
IUSE="nls"
|
||||
|
||||
DEPEND="~net-libs/libfwbuilder-${PV}
|
||||
nls? ( >=sys-devel/gettext-0.11.4 )
|
||||
>=dev-libs/libxslt-1.0.7"
|
||||
|
||||
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"
|
||||
# prevent install script from automatically stripping binaries - let portage do that
|
||||
sed -i -e 's/s) stripcmd="$stripprog"$/s)/' install.sh \
|
||||
|| die "sed install.sh failed"
|
||||
# documentation will be installed manually using dodoc & doman
|
||||
rm -f doc/doc.pro
|
||||
sed -i -e '/^SUBDIRS = po src doc/s/ doc//' fwbuilder2.pro \
|
||||
|| die "sed fwbuilder2.pro failed"
|
||||
|
||||
econf $(use_enable nls) || die "configure failed"
|
||||
|
||||
# use eqmake to generate Makefiles
|
||||
eqmake3 fwbuilder2.pro
|
||||
for subdir in po src src/res src/tools src/gui \
|
||||
src/fwblookup src/fwbedit src/ipt src/pflib \
|
||||
src/pf src/ipf src/ipfw src/parsers; do
|
||||
eqmake3 "${subdir}/${subdir##*/}.pro" -o ${subdir}/Makefile
|
||||
done
|
||||
|
||||
emake || die "make failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake install DDIR="${D}" || die "install failed"
|
||||
|
||||
cd doc
|
||||
dodoc AUTHORS ChangeLog Credits README* \
|
||||
FWBuilder-Routing-LICENSE.txt PatchAcceptancePolicy.txt
|
||||
newdoc ReleaseNotes_${PV}.txt ReleaseNotes
|
||||
doman fwb*.1
|
||||
cd ..
|
||||
|
||||
newicon src/gui/icons/firewall_64.png ${PN}.png
|
||||
make_desktop_entry fwbuilder "Firewall Builder" ${PN} "System;Security;Qt"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
echo
|
||||
elog "You need to emerge sys-apps/iproute2 on the machine"
|
||||
elog "that will run the firewall script."
|
||||
echo
|
||||
}
|
Reference in New Issue
Block a user