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.34.ebuild
Date: Wed, 29 Feb 2012 16:34:31
Message-Id: 20120229163421.36BD82004B@flycatcher.gentoo.org
1 jer 12/02/29 16:34:21
2
3 Modified: ChangeLog
4 Added: argus-clients-3.0.5.34.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 net-analyzer/argus-clients/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 22 Feb 2012 16:31:44 -0000 1.34
24 +++ ChangeLog 29 Feb 2012 16:34:21 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-analyzer/argus-clients
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.34 2012/02/22 16:31:44 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.35 2012/02/29 16:34:21 jer Exp $
30 +
31 +*argus-clients-3.0.5.34 (29 Feb 2012)
32 +
33 + 29 Feb 2012; Jeroen Roovers <jer@g.o> +argus-clients-3.0.5.34.ebuild:
34 + Version bump.
35
36 *argus-clients-3.0.5.33 (22 Feb 2012)
37
38
39
40
41 1.1 net-analyzer/argus-clients/argus-clients-3.0.5.34.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.5.34.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.34.ebuild?rev=1.1&content-type=text/plain
45
46 Index: argus-clients-3.0.5.34.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.34.ebuild,v 1.1 2012/02/29 16:34:21 jer Exp $
51
52 EAPI="4"
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}"
102 }
103
104 src_install() {
105 # argus_parse.a and argus_common.a are supplied by net-analyzer/argus
106 dobin bin/ra*
107 dodoc ChangeLog CREDITS README CHANGES
108 doman man/man{1,5}/*
109 }