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/tcpstat: ChangeLog tcpstat-1.5-r2.ebuild
Date: Mon, 30 Jun 2014 13:04:08
Message-Id: 20140630130405.C77962004E@flycatcher.gentoo.org
1 jer 14/06/30 13:04:05
2
3 Modified: ChangeLog
4 Added: tcpstat-1.5-r2.ebuild
5 Log:
6 EAPI 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.22 net-analyzer/tcpstat/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/tcpstat/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/tcpstat/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/tcpstat/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/tcpstat/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 14 Jun 2012 13:29:17 -0000 1.21
24 +++ ChangeLog 30 Jun 2014 13:04:05 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-analyzer/tcpstat
27 -# Copyright 2002-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpstat/ChangeLog,v 1.21 2012/06/14 13:29:17 ago Exp $
29 +# Copyright 2002-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpstat/ChangeLog,v 1.22 2014/06/30 13:04:05 jer Exp $
31 +
32 +*tcpstat-1.5-r2 (30 Jun 2014)
33 +
34 + 30 Jun 2014; Jeroen Roovers <jer@g.o> +tcpstat-1.5-r2.ebuild:
35 + EAPI bump.
36
37 14 Jun 2012; Agostino Sarubbo <ago@g.o> tcpstat-1.5-r1.ebuild:
38 stable for amd64
39
40
41
42 1.1 net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tcpstat-1.5-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild,v 1.1 2014/06/30 13:04:05 jer Exp $
52
53 EAPI=5
54 inherit eutils autotools flag-o-matic
55
56 DESCRIPTION="Reports network interface statistics"
57 SRC_URI="http://www.frenchfries.net/paul/tcpstat/${P}.tar.gz"
58 HOMEPAGE="http://www.frenchfries.net/paul/tcpstat/"
59
60 DEPEND="net-libs/libpcap"
61
62 SLOT="0"
63 LICENSE="GPL-2"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="ipv6"
66
67 src_prepare() {
68 epatch "${FILESDIR}"/${P}-db.patch
69 eautoreconf
70 }
71
72 src_configure() {
73 append-flags -Wall -Wextra
74 econf $(use_enable ipv6)
75 }
76
77 DOCS=( AUTHORS ChangeLog NEWS README doc/Tips_and_Tricks.txt )
78
79 src_install() {
80 default
81 dobin src/{catpcap,packetdump}
82 newdoc src/README README.src
83 }