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