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.7.1.ebuild
Date: Wed, 22 Aug 2012 01:59:24
Message-Id: 20120822015903.DBA25202BD@flycatcher.gentoo.org
1 jer 12/08/22 01:59:03
2
3 Modified: ChangeLog
4 Added: argus-clients-3.0.7.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.46 net-analyzer/argus-clients/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 4 Jul 2012 07:18:51 -0000 1.45
24 +++ ChangeLog 22 Aug 2012 01:59:03 -0000 1.46
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.45 2012/07/04 07:18:51 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.46 2012/08/22 01:59:03 jer Exp $
30 +
31 +*argus-clients-3.0.7.1 (22 Aug 2012)
32 +
33 + 22 Aug 2012; Jeroen Roovers <jer@g.o> +argus-clients-3.0.7.1.ebuild:
34 + Version bump.
35
36 04 Jul 2012; Jeff Horelick <jdhore@g.o> argus-clients-3.0.6.1.ebuild:
37 marked x86 per bug 422135
38
39
40
41 1.1 net-analyzer/argus-clients/argus-clients-3.0.7.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.7.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.7.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: argus-clients-3.0.7.1.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.7.1.ebuild,v 1.1 2012/08/22 01:59:03 jer Exp $
51
52 EAPI=4
53 inherit autotools eutils
54
55 DESCRIPTION="Clients for net-analyzer/argus"
56 HOMEPAGE="http://www.qosient.com/argus/"
57 SRC_URI="http://qosient.com/argus/dev/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="debug ft geoip mysql sasl tcpd"
63
64 MY_CDEPEND="
65 net-analyzer/rrdtool[perl]
66 net-libs/libpcap
67 sys-libs/ncurses
68 sys-libs/readline
69 ft? ( net-analyzer/flow-tools )
70 geoip? ( dev-libs/geoip )
71 mysql? ( virtual/mysql )
72 sasl? ( dev-libs/cyrus-sasl )
73 "
74
75 RDEPEND="
76 ${MY_CDEPEND}
77 "
78
79 DEPEND="
80 ${MY_CDEPEND}
81 sys-devel/bison
82 sys-devel/flex
83 "
84
85 src_prepare() {
86 epatch "${FILESDIR}"/${PN}-3.0.4.1-disable-tcp-wrappers-automagic.patch
87 eautoreconf
88 }
89
90 src_configure() {
91 use debug && touch .debug
92 econf \
93 $(use_with ft libft) \
94 $(use_with geoip GeoIP /usr/) \
95 $(use_with sasl) \
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 }