From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/fwbuilder/
Date: Sun, 24 Sep 2017 08:34:12 +0000 (UTC) [thread overview]
Message-ID: <1506242026.f5f3b0c0a042d6ed032464bf97fd0eb6643d5628.kensington@gentoo> (raw)
commit: f5f3b0c0a042d6ed032464bf97fd0eb6643d5628
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 08:25:36 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 08:33:46 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5f3b0c0
net-firewall/fwbuilder: version bump 5.3.7
Closes: https://bugs.gentoo.org/587158
Closes: https://bugs.gentoo.org/597608
Closes: https://bugs.gentoo.org/599466
Closes: https://bugs.gentoo.org/612306
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-firewall/fwbuilder/Manifest | 1 +
net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild | 71 +++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/net-firewall/fwbuilder/Manifest b/net-firewall/fwbuilder/Manifest
index c1a2cbb5921..dd1bf7ab216 100644
--- a/net-firewall/fwbuilder/Manifest
+++ b/net-firewall/fwbuilder/Manifest
@@ -1,2 +1,3 @@
DIST fwbuilder-5.0.1.3592.tar.gz 6733502 SHA256 22120de712844b5d89a3f2924964c16cc86f96f2156ace7c3f551bd0d713c94b SHA512 aac34c97963819f0dca4a6bfa63987df45cdd6905164b49ae6f6a423f044fc52aeb09b15b2fc294e1aa3da97d3d31e75bdf9a690e383f579a2fb40ef656f4885 WHIRLPOOL 436e5f8c802e6b25c588f3296ac0cbce89aa818c53871296615980aee6b71b84a64a44808f7d2390ee73b11e83b2acc88d94c7b236df5caf83788d735276211f
DIST fwbuilder-5.3.6.tar.gz 7325429 SHA256 672c2870c3a2ce1eb504a97d17ea9a8eb6dd61ec314cf79b9488b48a356cdfa6 SHA512 70f6888d09c89a624ea35f119c1e00d5a7e57d993d8658fd164e35bce073503bf66f3c9e05ffa1b49ab9371cf219825d22a41c31604c63de5290dd64845e06af WHIRLPOOL a559061861447bff1657857c5a9f551e4eb0315fdea99199025d9cdaae3b1163cb69f97c36517bbe39998b0a9a97026d9737485b5a01144cd8296c502830e9b6
+DIST fwbuilder-5.3.7.tar.gz 7332419 SHA256 aba1ed8f690e9e4659c0e981120ea68da7ee327d6cf81260d51329351addf91e SHA512 d6504ddab17e80cb332f005b6bbb16c15a7b4735361733f0e0437cb94059a5c9039e563be6e0e8d328954db2416b2c0bdbb8afa36cd946f61e7c7edaee47453b WHIRLPOOL 0191f0f812b494bae9d4c00cc4a26315f32c378e5395270f56cd4e3d7d0c189d67ec154c28d9aaeecee0b0304c1bb5cf61db2a738b32b189ee53f306849fdfa9
diff --git a/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild b/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild
new file mode 100644
index 00000000000..7895ff36496
--- /dev/null
+++ b/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools gnome2-utils qmake-utils
+
+DESCRIPTION="A firewall GUI"
+HOMEPAGE="http://www.fwbuilder.org/"
+SRC_URI="https://github.com/fwbuilder/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+DEPEND="
+ dev-libs/libxml2
+ dev-libs/libxslt
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtprintsupport:5
+ dev-qt/qtwidgets:5
+ sys-libs/zlib
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ eapply_user
+
+ # bug 398743
+ sed -i -e '/dnl.*AM_INIT_AUTOMAKE/d' configure.in || die
+
+ # we need to run qmake ourselves using eqmake5 in src_configure to
+ # ensure we respect CC, *FLAGS, etc.
+ sed -i -e "/runqmake.sh/d" configure.in || die
+
+ # bug 426262
+ mv configure.in configure.ac || die
+
+ # don't install yet another copy of the GPL
+ sed -i -e '/COPYING/d' doc/doc.pro || die
+
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --without-{ccache,distcc} # portage handles ccache/distcc itself
+ --with-docdir="/usr/share/doc/${PF}"
+ --with-qmake="$(qt5_get_bindir)/qmake" # use fully-qualified qmake, bug #599466
+
+ # yes, we really do need to run both econf and eqmake5...
+ eqmake5
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+
+ elog "You need to install sys-apps/iproute2"
+ elog "in order to run the firewall script."
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
next reply other threads:[~2017-09-24 8:34 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-24 8:34 Michael Palimaka [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-03-03 21:22 [gentoo-commits] repo/gentoo:master commit in: net-firewall/fwbuilder/ David Seifert
2021-10-20 4:03 Sam James
2021-10-20 4:03 Sam James
2021-10-15 6:00 Agostino Sarubbo
2021-10-14 9:45 Sam James
2021-10-14 4:26 Sam James
2020-05-21 18:55 Andreas Sturmlechner
2019-06-17 23:29 Aaron Bauman
2018-01-07 19:24 Mikle Kolyada
2017-12-10 21:22 Sergei Trofimovich
2017-12-08 20:39 Thomas Deutschmann
2017-12-04 21:52 Andreas Sturmlechner
2017-11-23 20:49 Ulrich Müller
2017-09-24 8:34 Michael Palimaka
2017-01-15 3:58 Göktürk Yüksek
2016-04-15 11:45 Michael Palimaka
2016-03-18 4:36 Aaron Bauman
2016-03-18 3:55 Aaron Bauman
2016-03-18 3:55 Aaron Bauman
2016-03-18 3:55 Aaron Bauman
2015-12-07 8:39 Anthony G. Basile
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1506242026.f5f3b0c0a042d6ed032464bf97fd0eb6643d5628.kensington@gentoo \
--to=kensington@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox