summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2011-11-20 19:30:05 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2011-11-20 19:30:05 +0000
commitab751a8c1c60c1f78f4c9bdfce774def101df48a (patch)
treea833fa2cb149d03b194a2ffb3dafcbe55404fd5e /net-firewall/fwbuilder
parentVersion bump. Port to gtk+:3. (diff)
downloadgentoo-2-ab751a8c1c60c1f78f4c9bdfce774def101df48a.tar.gz
gentoo-2-ab751a8c1c60c1f78f4c9bdfce774def101df48a.tar.bz2
gentoo-2-ab751a8c1c60c1f78f4c9bdfce774def101df48a.zip
Remove old
(Portage version: 2.1.10.36/cvs/Linux x86_64)
Diffstat (limited to 'net-firewall/fwbuilder')
-rw-r--r--net-firewall/fwbuilder/ChangeLog6
-rw-r--r--net-firewall/fwbuilder/fwbuilder-3.0.7.ebuild74
2 files changed, 5 insertions, 75 deletions
diff --git a/net-firewall/fwbuilder/ChangeLog b/net-firewall/fwbuilder/ChangeLog
index ee8eb0aed4af..3471dae00a3c 100644
--- a/net-firewall/fwbuilder/ChangeLog
+++ b/net-firewall/fwbuilder/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/fwbuilder
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/fwbuilder/ChangeLog,v 1.108 2011/08/21 09:49:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/fwbuilder/ChangeLog,v 1.109 2011/11/20 19:30:04 dilfridge Exp $
+
+ 20 Nov 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+ -fwbuilder-3.0.7.ebuild:
+ Remove old
21 Aug 2011; Andreas K. Huettel <dilfridge@gentoo.org>
-fwbuilder-4.1.2.ebuild, -fwbuilder-4.1.3.ebuild:
diff --git a/net-firewall/fwbuilder/fwbuilder-3.0.7.ebuild b/net-firewall/fwbuilder/fwbuilder-3.0.7.ebuild
deleted file mode 100644
index a0e465dc28d3..000000000000
--- a/net-firewall/fwbuilder/fwbuilder-3.0.7.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/fwbuilder/fwbuilder-3.0.7.ebuild,v 1.7 2011/05/29 16:21:42 dilfridge Exp $
-
-EAPI=4
-
-inherit eutils qt4-r2 multilib
-
-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="+pch"
-
-DEPEND="~net-libs/libfwbuilder-${PV}
- >=dev-java/antlr-2.7.7:0[cxx,static-libs(+)]
- x11-libs/qt-gui:4"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- qt4-r2_src_prepare
-
- epatch "${FILESDIR}/${PV}-secure-mktemp.patch"
-
- # Remove bundled antlr
- rm -rf src/antlr
-
- sed -i \
- -e '/COPYING/d' \
- doc/doc.pro || die "sed doc.pro failed"
-
- # 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"
-
- if ! use pch; then
- sed -i \
- -e '/^PRECOMPILED_HEADER =/,/[^\\]$/d' \
- -e '/^CONFIG += precompile_header/d' \
- src/gui/gui.pro || die "sed for gui.pro failed"
- fi
-}
-
-src_configure() {
- econf \
- --with-docdir=/usr/share/doc/${PF}
-
- for pro_file in $(find "${S}" -name "*.pro"); do
- eqmake4 "${pro_file}" -o "$(dirname ${pro_file})/Makefile" "CONFIG+=nostrip"
- done
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
- cd doc
- dodoc AUTHORS ChangeLog Credits README* \
- FWBuilder-Routing-LICENSE.txt PatchAcceptancePolicy.txt
- doman fwb*.1
-}
-
-pkg_postinst() {
- validate_desktop_entries
-
- elog "You need to emerge sys-apps/iproute2 on the machine"
- elog "that will run the firewall script."
-}