Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/ipcad: ChangeLog ipcad-3.7.3.ebuild
Date: Thu, 31 Mar 2011 17:27:19
Message-Id: 20110331172708.DCD6620054@flycatcher.gentoo.org
1 ssuominen 11/03/31 17:27:08
2
3 Modified: ChangeLog
4 Added: ipcad-3.7.3.ebuild
5 Log:
6 Version bump. Fix building with recent linux-headers wrt #360875 by including signal.h where it's used.
7
8 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.32 net-analyzer/ipcad/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ipcad/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ipcad/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ipcad/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ipcad/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 20 Jan 2011 09:10:59 -0000 1.31
24 +++ ChangeLog 31 Mar 2011 17:27:08 -0000 1.32
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-analyzer/ipcad
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipcad/ChangeLog,v 1.31 2011/01/20 09:10:59 pva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipcad/ChangeLog,v 1.32 2011/03/31 17:27:08 ssuominen Exp $
30 +
31 +*ipcad-3.7.3 (31 Mar 2011)
32 +
33 + 31 Mar 2011; Samuli Suominen <ssuominen@g.o> +ipcad-3.7.3.ebuild,
34 + +files/ipcad-3.7.3-signal_h.patch:
35 + Version bump. Fix building with recent linux-headers wrt #360875 by including
36 + signal.h where it's used.
37
38 20 Jan 2011; Peter Volkov <pva@g.o> ipcad-3.7.ebuild,
39 +files/ipcad-3.7-linux-2.6.35.patch:
40
41
42
43 1.1 net-analyzer/ipcad/ipcad-3.7.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ipcad/ipcad-3.7.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ipcad/ipcad-3.7.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ipcad-3.7.3.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipcad/ipcad-3.7.3.ebuild,v 1.1 2011/03/31 17:27:08 ssuominen Exp $
53
54 EAPI=2
55 inherit autotools eutils
56
57 DESCRIPTION="IP Cisco Accounting Daemon"
58 HOMEPAGE="http://ipcad.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/ipcad/${P}.tar.gz"
60
61 LICENSE="as-is"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="net-libs/libpcap
67 net-firewall/iptables"
68 DEPEND="${RDEPEND}"
69
70 src_prepare() {
71 epatch \
72 "${FILESDIR}"/${PN}-3.7-linux-2.6.27.patch \
73 "${FILESDIR}"/${PN}-3.7-linux-2.6.35.patch \
74 "${FILESDIR}"/${P}-signal_h.patch
75
76 eautoreconf
77 }
78
79 src_install() {
80 sed -i -e "s/^chroot = \/adm\/tmp;/chroot = \/var\/ipcad;/" ipcad.conf.default
81 sed -i -e "s/^interface/#interface/" ipcad.conf.default
82 sed -i -e "s/^aggregate/#aggregate/" ipcad.conf.default
83 sed -i -e "s/^pidfile = ipcad.pid;/pidfile = \/run\/ipcad.pid;/" ipcad.conf.default
84
85 dodoc AUTHORS ChangeLog README BUGS FAQ ipcad.conf.simple ipcad.conf.default
86
87 dosbin ipcad || die
88
89 insinto /etc
90 insopts -m0600
91 newins ipcad.conf.default ipcad.conf
92
93 keepdir /var/ipcad/run
94
95 doman ipcad.8 ipcad.conf.5
96
97 newinitd "${FILESDIR}"/ipcad.init ipcad
98 newconfd "${FILESDIR}"/ipcad.conf.d ipcad
99 }