Gentoo Archives: gentoo-commits

From: "Thilo Bangert (bangert)" <bangert@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-firewall/ipkungfu: ChangeLog ipkungfu-0.6.1.ebuild
Date: Wed, 01 Oct 2008 11:08:05
Message-Id: E1KkzYh-0006eh-3S@stork.gentoo.org
1 bangert 08/10/01 11:07:55
2
3 Modified: ChangeLog
4 Added: ipkungfu-0.6.1.ebuild
5 Log:
6 version bump - thanks Pinky - bug #184180
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.16 net-firewall/ipkungfu/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/ipkungfu/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/ipkungfu/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/ipkungfu/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipkungfu/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 21 Apr 2008 17:51:03 -0000 1.15
23 +++ ChangeLog 1 Oct 2008 11:07:54 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-firewall/ipkungfu
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipkungfu/ChangeLog,v 1.15 2008/04/21 17:51:03 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipkungfu/ChangeLog,v 1.16 2008/10/01 11:07:54 bangert Exp $
29 +
30 +*ipkungfu-0.6.1 (01 Oct 2008)
31 +
32 + 01 Oct 2008; Thilo Bangert <bangert@g.o>
33 + +files/ipkungfu_noiseless.patch, +ipkungfu-0.6.1.ebuild:
34 + version bump - thanks Pinky - bug #184180
35
36 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
37 Fix up metadata.xml. If there's no maintainer for the package, the metadata
38
39
40
41 1.1 net-firewall/ipkungfu/ipkungfu-0.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/ipkungfu/ipkungfu-0.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/ipkungfu/ipkungfu-0.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ipkungfu-0.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-firewall/ipkungfu/ipkungfu-0.6.1.ebuild,v 1.1 2008/10/01 11:07:54 bangert Exp $
51
52 inherit eutils
53
54 DESCRIPTION="A nice iptables firewall script"
55 HOMEPAGE="http://www.linuxkungfu.org/"
56 SRC_URI="http://www.linuxkungfu.org/ipkungfu/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="virtual/libc
64 net-firewall/iptables"
65 RDEPEND="${DEPEND}
66 virtual/logger"
67
68 src_compile() {
69 epatch "${FILESDIR}/ipkungfu_noiseless.patch" || die "Could not apply ipkungfu_noiseless.patch patch"
70 econf || die "Could not run econf"
71 emake || die "Couldn't run make"
72 }
73
74 src_install() {
75 make DESTDIR="${D}" install || die
76
77 # Install configuration files
78 make DESTDIR="${D}" install-config || die
79
80 # Install Gentoo init script
81 newinitd "${FILESDIR}"/ipkungfu.init ipkungfu
82 }
83
84 pkg_postinst() {
85 # Remove the cache dir so ipkungfu won't fail when running for
86 # the first time, case 0.6.0 was installed before.
87 rm -rf /etc/ipkungfu/cache
88
89 einfo "Be sure to, before running ipkungfu, edit the config files in:"
90 einfo "/etc/ipkungfu/"
91 echo
92 einfo "Also, be sure to run ipkungfu prior to rebooting,"
93 einfo "especially if you you're updating from <0.6.0 to >=0.6.0."
94 einfo "There are some significant configuration changes on this"
95 einfo "release covered by the ipkungfu script."
96 }