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