Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/fprobe: ChangeLog fprobe-1.1-r2.ebuild
Date: Thu, 26 Jun 2008 20:41:30
Message-Id: E1KByHV-00014W-5Q@stork.gentoo.org
1 robbat2 08/06/26 20:41:25
2
3 Modified: ChangeLog
4 Added: fprobe-1.1-r2.ebuild
5 Log:
6 The init script was always running in promisc mode UNLESS you tried to not run promisc.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-00103-g1beee8d x86_64)
8
9 Revision Changes Path
10 1.14 net-analyzer/fprobe/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fprobe/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fprobe/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fprobe/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fprobe/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -p -w -b -B -u -u -r1.13 -r1.14
22 --- ChangeLog 17 Mar 2008 08:41:11 -0000 1.13
23 +++ ChangeLog 26 Jun 2008 20:41:24 -0000 1.14
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-analyzer/fprobe
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fprobe/ChangeLog,v 1.13 2008/03/17 08:41:11 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fprobe/ChangeLog,v 1.14 2008/06/26 20:41:24 robbat2 Exp $
29 +
30 +*fprobe-1.1-r2 (26 Jun 2008)
31 +
32 + 26 Jun 2008; Robin H. Johnson <robbat2@g.o> files/init.d-fprobe,
33 + +fprobe-1.1-r2.ebuild:
34 + The init script was always running in promisc mode UNLESS you tried to not
35 + run promisc.
36
37 *fprobe-1.1-r1 (17 Mar 2008)
38
39
40
41
42 1.1 net-analyzer/fprobe/fprobe-1.1-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fprobe/fprobe-1.1-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fprobe/fprobe-1.1-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fprobe-1.1-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/fprobe/fprobe-1.1-r2.ebuild,v 1.1 2008/06/26 20:41:24 robbat2 Exp $
52
53 inherit eutils
54
55 DESCRIPTION="A libpcap-based tool to collect network traffic data and emit it as NetFlow flows"
56 HOMEPAGE="http://fprobe.sourceforge.net"
57 LICENSE="GPL-2"
58
59 SRC_URI="mirror://sourceforge/fprobe/${P}.tar.bz2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62
63 IUSE="debug messages"
64
65 DEPEND="net-libs/libpcap"
66
67 src_unpack() {
68 unpack ${A}
69 # The pidfile should be created by the parent process, before the
70 # setuid/chroot # is executed.
71 epatch "${FILESDIR}"/fprobe-1.1-pidfile-sanity.patch
72 # This seems to fail, uncertain why.
73 epatch "${FILESDIR}"/fprobe-1.1-setgroups.patch
74 }
75
76 src_compile() {
77 econf \
78 $(use_enable debug) \
79 $(use_enable messages) \
80 || die "configure failed"
81
82 emake || die "make failed"
83 }
84
85 src_install() {
86 make DESTDIR="${D}" install || die "install failed"
87
88 dodoc AUTHORS NEWS README TODO
89 docinto contrib
90 dodoc contrib/tg.sh
91
92 newinitd "${FILESDIR}"/init.d-fprobe fprobe
93 newconfd "${FILESDIR}"/conf.d-fprobe fprobe
94 }
95
96
97
98 --
99 gentoo-commits@l.g.o mailing list