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: argus-clients-3.0.7.26.ebuild ChangeLog
Date: Sat, 03 May 2014 21:14:40
Message-Id: 20140503211437.393FE2004C@flycatcher.gentoo.org
1 jer 14/05/03 21:14:37
2
3 Modified: ChangeLog
4 Added: argus-clients-3.0.7.26.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.62 net-analyzer/argus-clients/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.62&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?rev=1.62&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/ChangeLog?r1=1.61&r2=1.62
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v
20 retrieving revision 1.61
21 retrieving revision 1.62
22 diff -u -r1.61 -r1.62
23 --- ChangeLog 5 Mar 2014 17:08:12 -0000 1.61
24 +++ ChangeLog 3 May 2014 21:14:37 -0000 1.62
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-analyzer/argus-clients
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.61 2014/03/05 17:08:12 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus-clients/ChangeLog,v 1.62 2014/05/03 21:14:37 jer Exp $
30 +
31 +*argus-clients-3.0.7.26 (03 May 2014)
32 +
33 + 03 May 2014; Jeroen Roovers <jer@g.o> +argus-clients-3.0.7.26.ebuild:
34 + Version bump.
35
36 *argus-clients-3.0.7.21 (05 Mar 2014)
37
38
39
40
41 1.1 net-analyzer/argus-clients/argus-clients-3.0.7.26.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/argus-clients/argus-clients-3.0.7.26.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.26.ebuild?rev=1.1&content-type=text/plain
45
46 Index: argus-clients-3.0.7.26.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.26.ebuild,v 1.1 2014/05/03 21:14:37 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 sys-libs/zlib
70 ft? ( net-analyzer/flow-tools )
71 geoip? ( dev-libs/geoip )
72 mysql? ( virtual/mysql )
73 sasl? ( dev-libs/cyrus-sasl )
74 "
75
76 RDEPEND="
77 ${MY_CDEPEND}
78 "
79
80 DEPEND="
81 ${MY_CDEPEND}
82 sys-devel/bison
83 sys-devel/flex
84 virtual/pkgconfig
85 "
86
87 src_prepare() {
88 epatch \
89 "${FILESDIR}"/${PN}-3.0.4.1-disable-tcp-wrappers-automagic.patch \
90 "${FILESDIR}"/${PN}-3.0.7.18-sasl.patch \
91 "${FILESDIR}"/${PN}-3.0.7.21-curses-readline.patch
92
93 sed -i -e 's| ar | $(AR) |g' common/Makefile.in || die
94 tc-export AR RANLIB
95
96 eautoreconf
97 }
98
99 src_configure() {
100 use debug && touch .debug
101 econf \
102 $(use_with ft libft) \
103 $(use_with geoip GeoIP /usr/) \
104 $(use_with sasl) \
105 $(use_with tcpd wrappers) \
106 $(use_with mysql)
107 }
108
109 src_compile() {
110 # racurses uses both libncurses and libtinfo, if present
111 emake \
112 CCOPT="${CFLAGS} ${LDFLAGS}" \
113 RANLIB=$(tc-getRANLIB) \
114 CURSESLIB="$( $(tc-getPKG_CONFIG) --libs ncurses)"
115 }
116
117 src_install() {
118 dobin bin/ra*
119 dodoc ChangeLog CREDITS README CHANGES
120 doman man/man{1,5}/*
121 }