Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/argus-clients: argus-clients-3.0.4.1-r1.ebuild ChangeLog argus-clients-3.0.4.1.ebuild
Date: Wed, 01 Jun 2011 00:30:24
Message-Id: 20110601003014.5EE5F20054@flycatcher.gentoo.org
1 jer 11/06/01 00:30:14
2
3 Modified: ChangeLog
4 Added: argus-clients-3.0.4.1-r1.ebuild
5 Removed: argus-clients-3.0.4.1.ebuild
6 Log:
7 Install radium thanks to Martin Buerger (bug #352166).
8
9 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.18 net-analyzer/argus-clients/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.18&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.18&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?r1=1.17&r2=1.18
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v
21 retrieving revision 1.17
22 retrieving revision 1.18
23 diff -u -r1.17 -r1.18
24 --- ChangeLog 19 Apr 2011 22:18:51 -0000 1.17
25 +++ ChangeLog 1 Jun 2011 00:30:14 -0000 1.18
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-analyzer/argus-clients
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.17 2011/04/19 22:18:51 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.18 2011/06/01 00:30:14 jer Exp $
31 +
32 +*argus-clients-3.0.4.1-r1 (01 Jun 2011)
33 +
34 + 01 Jun 2011; Jeroen Roovers <jer@g.o> -argus-clients-3.0.4.1.ebuild,
35 + +argus-clients-3.0.4.1-r1.ebuild:
36 + Install radium thanks to Martin Buerger (bug #352166).
37
38 *argus-clients-3.0.5.6 (19 Apr 2011)
39 *argus-clients-3.0.4.1 (19 Apr 2011)
40
41
42
43 1.1 net-analyzer/argus-clients/argus-clients-3.0.4.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.4.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.4.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: argus-clients-3.0.4.1-r1.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/argus-clients/argus-clients-3.0.4.1-r1.ebuild,v 1.1 2011/06/01 00:30:14 jer Exp $
53
54 EAPI="2"
55
56 inherit autotools eutils
57
58 DESCRIPTION="Clients for net-analyzer/argus"
59 HOMEPAGE="http://www.qosient.com/argus/"
60 SRC_URI="http://qosient.com/argus/src/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="debug geoip mysql tcpd"
66
67 #sasl? ( >=dev-libs/cyrus-sasl-1.5.24 )
68 MY_CDEPEND="net-libs/libpcap
69 net-analyzer/rrdtool[perl]
70 geoip? ( dev-libs/geoip )
71 mysql? ( virtual/mysql )"
72
73 # >=net-analyzer/argus-2.0.6[sasl?]"
74 RDEPEND="${MY_CDEPEND}
75 >=net-analyzer/argus-3.0.2"
76
77 DEPEND="${MY_CDEPEND}
78 >=sys-devel/bison-1.28
79 >=sys-devel/flex-2.4.6"
80
81 src_prepare() {
82 for x in $(find . -name "Makefile.in"); do
83 sed -i "s:\$(CFLAGS):& \$(LDFLAGS) :" $x
84 done
85 epatch "${FILESDIR}"/${P}-disable-tcp-wrappers-automagic.patch
86 eautoreconf
87 }
88
89 src_configure() {
90 use debug && touch .debug
91 # $(use_with sasl) \
92 econf \
93 $(use_with geoip GeoIP /usr/) \
94 $(use_with tcpd wrappers) \
95 $(use_with mysql)
96 }
97
98 src_compile() {
99 emake CCOPT="${CFLAGS} ${LDFLAGS}" || die "emake failed"
100 }
101
102 src_install() {
103 # argus_parse.a and argus_common.a are supplied by net-analyzer/argus
104 dobin bin/ra* radium/radium || die "Failed to install ra*"
105 dodoc ChangeLog CREDITS README doc/{CHANGES,FAQ,HOW-TO} || die
106 doman man/man{1,5}/*
107 }