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.18.ebuild
Date: Fri, 06 Dec 2013 16:35:41
Message-Id: 20131206163538.A78E82004B@flycatcher.gentoo.org
1 jer 13/12/06 16:35:38
2
3 Modified: ChangeLog
4 Added: argus-clients-3.0.7.18.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.59 net-analyzer/argus-clients/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.59&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.59&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?r1=1.58&r2=1.59
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v
20 retrieving revision 1.58
21 retrieving revision 1.59
22 diff -u -r1.58 -r1.59
23 --- ChangeLog 17 Aug 2013 15:59:04 -0000 1.58
24 +++ ChangeLog 6 Dec 2013 16:35:38 -0000 1.59
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-analyzer/argus-clients
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.58 2013/08/17 15:59:04 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.59 2013/12/06 16:35:38 jer Exp $
30 +
31 +*argus-clients-3.0.7.18 (06 Dec 2013)
32 +
33 + 06 Dec 2013; Jeroen Roovers <jer@g.o> +argus-clients-3.0.7.18.ebuild:
34 + Version bump.
35
36 17 Aug 2013; Jeroen Roovers <jer@g.o>
37 -files/argus-clients-3.0.7.12-strncasecmp.patch,
38
39
40
41 1.1 net-analyzer/argus-clients/argus-clients-3.0.7.18.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.7.18.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.18.ebuild?rev=1.1&content-type=text/plain
45
46 Index: argus-clients-3.0.7.18.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.18.ebuild,v 1.1 2013/12/06 16:35:38 jer Exp $
51
52 EAPI=5
53 inherit autotools eutils toolchain-funcs
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-3"
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 \
87 "${FILESDIR}"/${PN}-3.0.4.1-disable-tcp-wrappers-automagic.patch
88
89 sed -i -e 's| ar | $(AR) |g' common/Makefile.in || die
90 tc-export AR RANLIB
91
92 eautoreconf
93 }
94
95 src_configure() {
96 use debug && touch .debug
97 econf \
98 $(use_with ft libft) \
99 $(use_with geoip GeoIP /usr/) \
100 $(use_with sasl) \
101 $(use_with tcpd wrappers) \
102 $(use_with mysql)
103 }
104
105 src_compile() {
106 emake CCOPT="${CFLAGS} ${LDFLAGS}" RANLIB=$(tc-getRANLIB)
107 }
108
109 src_install() {
110 # argus_parse.a and argus_common.a are supplied by net-analyzer/argus
111 dobin bin/ra*
112 dodoc ChangeLog CREDITS README CHANGES
113 doman man/man{1,5}/*
114 }