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.19.ebuild
Date: Tue, 30 Aug 2011 19:35:30
Message-Id: 20110830193520.99ED920051@flycatcher.gentoo.org
1 jer 11/08/30 19:35:20
2
3 Modified: ChangeLog
4 Added: argus-clients-3.0.5.19.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.27 net-analyzer/argus-clients/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 1 Aug 2011 22:44:42 -0000 1.26
24 +++ ChangeLog 30 Aug 2011 19:35:20 -0000 1.27
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.26 2011/08/01 22:44:42 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.27 2011/08/30 19:35:20 jer Exp $
30 +
31 +*argus-clients-3.0.5.19 (30 Aug 2011)
32 +
33 + 30 Aug 2011; Jeroen Roovers <jer@g.o> +argus-clients-3.0.5.19.ebuild:
34 + Version bump.
35
36 *argus-clients-3.0.5.18 (01 Aug 2011)
37
38
39
40
41 1.1 net-analyzer/argus-clients/argus-clients-3.0.5.19.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.5.19.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.19.ebuild?rev=1.1&content-type=text/plain
45
46 Index: argus-clients-3.0.5.19.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.19.ebuild,v 1.1 2011/08/30 19:35:20 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="
67 net-libs/libpcap
68 net-analyzer/rrdtool[perl]
69 geoip? ( dev-libs/geoip )
70 mysql? ( virtual/mysql )
71 sys-libs/ncurses
72 "
73
74 # >=net-analyzer/argus-2.0.6[sasl?]"
75 RDEPEND="
76 ${MY_CDEPEND}
77 >=net-analyzer/argus-3.0.2
78 "
79
80 DEPEND="
81 ${MY_CDEPEND}
82 >=sys-devel/bison-1.28
83 >=sys-devel/flex-2.4.6
84 "
85
86 src_prepare() {
87 epatch "${FILESDIR}"/${PN}-3.0.4.1-disable-tcp-wrappers-automagic.patch
88 eautoreconf
89 }
90
91 src_configure() {
92 use debug && touch .debug
93 # $(use_with sasl) \
94 econf \
95 $(use_with geoip GeoIP /usr/) \
96 $(use_with tcpd wrappers) \
97 $(use_with mysql)
98 }
99
100 src_compile() {
101 emake CCOPT="${CFLAGS} ${LDFLAGS}" || die "emake failed"
102 }
103
104 src_install() {
105 # argus_parse.a and argus_common.a are supplied by net-analyzer/argus
106 dobin bin/ra* || die "Failed to install ra*"
107 dodoc ChangeLog CREDITS README doc/{CHANGES,FAQ,HOW-TO} || die
108 doman man/man{1,5}/*
109 }