Gentoo Archives: gentoo-commits

From: "Constanze Hausner (constanze)" <constanze@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall6: ChangeLog shorewall6-4.5.0.1.ebuild
Date: Fri, 24 Feb 2012 18:53:50
Message-Id: 20120224185341.90A482004B@flycatcher.gentoo.org
1 constanze 12/02/24 18:53:41
2
3 Modified: ChangeLog
4 Added: shorewall6-4.5.0.1.ebuild
5 Log:
6 Version Bump; See Bug 405509; Thanks a lot to Richard
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.49 net-firewall/shorewall6/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall6/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall6/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall6/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall6/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 23 Jan 2012 13:40:45 -0000 1.48
24 +++ ChangeLog 24 Feb 2012 18:53:41 -0000 1.49
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-firewall/shorewall6
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall6/ChangeLog,v 1.48 2012/01/23 13:40:45 klausman Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall6/ChangeLog,v 1.49 2012/02/24 18:53:41 constanze Exp $
30 +
31 +*shorewall6-4.5.0.1 (24 Feb 2012)
32 +
33 + 24 Feb 2012; Constanze Hausner <constanze@g.o> files/shorewall6.initd,
34 + +shorewall6-4.5.0.1.ebuild:
35 + Version Bump
36
37 23 Jan 2012; Tobias Klausmann <klausman@g.o>
38 shorewall6-4.4.23.2.ebuild:
39
40
41
42 1.1 net-firewall/shorewall6/shorewall6-4.5.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall6/shorewall6-4.5.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall6/shorewall6-4.5.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: shorewall6-4.5.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall6/shorewall6-4.5.0.1.ebuild,v 1.1 2012/02/24 18:53:41 constanze Exp $
52
53 EAPI="4"
54
55 inherit versionator linux-info
56
57 # Select version (stable, RC, Beta, upstream patched):
58 MY_PV_TREE=$(get_version_component_range 1-2) # for devel versions use "development/$(get_version_component_range 1-2)"
59 MY_PV_BASE=$(get_version_component_range 1-3) # which shorewall-common to use
60
61 MY_PN="${PN/6/}"
62 MY_P="${MY_PN}-${MY_PV_BASE}"
63 MY_P_DOCS="${MY_PN}-docs-html-${PV}"
64
65 DESCRIPTION="Shoreline Firewall with IPv6 support."
66 HOMEPAGE="http://www.shorewall.net/"
67 SRC_URI="http://www1.shorewall.net/pub/${MY_PN}/${MY_PV_TREE}/${MY_P}/${P}.tar.bz2
68 doc? ( http://www1.shorewall.net/pub/${PN}/${MY_PV_TREE}/${MY_P}/${MY_P_DOCS}.tar.bz2 )"
69
70 LICENSE="GPL-2"
71 SLOT="0"
72 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
73
74 IUSE="doc"
75
76 RDEPEND=">=net-firewall/iptables-1.4.0
77 sys-apps/iproute2
78 >=net-firewall/shorewall-${MY_PV_BASE}
79 dev-perl/Socket6"
80
81 pkg_pretend() {
82 if kernel_is lt 2 6 25 ; then
83 die "${PN} requires at least kernel 2.6.25."
84 fi
85 }
86
87 src_compile() {
88 # The default make command does not work as expected
89 :
90 }
91
92 src_install() {
93 keepdir /var/lib/${PN}
94
95 cd "${WORKDIR}/${P}"
96 PREFIX="${D}" ./install.sh || die "install.sh failed"
97 newinitd "${FILESDIR}"/${PN}.initd ${PN}
98
99 dodoc changelog.txt releasenotes.txt
100 if use doc; then
101 dodoc -r Samples6
102 cd "${WORKDIR}/${MY_P_DOCS}"
103 dohtml -r *
104 fi
105 keepdir /var/lock/subsys
106 }