Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-firewall/firehol: firehol-2.0.2.ebuild ChangeLog
Date: Thu, 30 Apr 2015 18:12:48
Message-Id: 20150430181243.157379AA@oystercatcher.gentoo.org
1 alonbl 15/04/30 18:12:41
2
3 Modified: firehol-2.0.2.ebuild ChangeLog
4 Log:
5 Override ip6tables at configure as it has no effect, bug#547188
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
8
9 Revision Changes Path
10 1.2 net-firewall/firehol/firehol-2.0.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/firehol/firehol-2.0.2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/firehol/firehol-2.0.2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/firehol/firehol-2.0.2.ebuild?r1=1.1&r2=1.2
15
16 Index: firehol-2.0.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-2.0.2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- firehol-2.0.2.ebuild 14 Apr 2015 15:19:30 -0000 1.1
23 +++ firehol-2.0.2.ebuild 30 Apr 2015 18:12:41 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-2.0.2.ebuild,v 1.1 2015/04/14 15:19:30 alonbl Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-2.0.2.ebuild,v 1.2 2015/04/30 18:12:41 alonbl Exp $
29
30 EAPI=5
31 inherit eutils linux-info
32 @@ -14,10 +14,11 @@
33 IUSE="doc"
34 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
35
36 -DEPEND="sys-apps/iproute2"
37 RDEPEND="net-firewall/iptables
38 sys-apps/iproute2[-minimal]
39 - virtual/modutils"
40 + virtual/modutils
41 + app-arch/gzip"
42 +DEPEND="${RDEPEND}"
43
44 pkg_setup() {
45 local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
46 @@ -39,11 +40,15 @@
47 }
48
49 src_configure() {
50 + # removing IP6TABLES_CMD has no effect and enable build
51 + # without ipv6 available
52 econf \
53 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
54 --with-autosave="${EPREFIX}/var/lib/iptables/rules-save" \
55 --with-autosave6="${EPREFIX}/var/lib/ip6tables/rules-save" \
56 - $(use_enable doc)
57 + $(use_enable doc) \
58 + IP6TABLES_CMD=/bin/false \
59 + IP6TABLES_SAVE_CMD=/bin/false
60 }
61
62 src_install() {
63
64
65
66 1.57 net-firewall/firehol/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/firehol/ChangeLog?rev=1.57&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/firehol/ChangeLog?rev=1.57&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/firehol/ChangeLog?r1=1.56&r2=1.57
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v
75 retrieving revision 1.56
76 retrieving revision 1.57
77 diff -u -r1.56 -r1.57
78 --- ChangeLog 14 Apr 2015 15:19:30 -0000 1.56
79 +++ ChangeLog 30 Apr 2015 18:12:41 -0000 1.57
80 @@ -1,6 +1,9 @@
81 # ChangeLog for net-firewall/firehol
82 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.56 2015/04/14 15:19:30 alonbl Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.57 2015/04/30 18:12:41 alonbl Exp $
85 +
86 + 30 Apr 2015; Alon Bar-Lev <alonbl@g.o> firehol-2.0.2.ebuild:
87 + Override ip6tables at configure as it has no effect, bug#547188
88
89 *firehol-2.0.2 (14 Apr 2015)