Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/bwmon: bwmon-1.3-r2.ebuild ChangeLog
Date: Mon, 05 Nov 2012 02:59:02
Message-Id: 20121105025844.33579215FF@flycatcher.gentoo.org
1 flameeyes 12/11/05 02:58:44
2
3 Modified: ChangeLog
4 Added: bwmon-1.3-r2.ebuild
5 Log:
6 Fix overflow identified by Vicente Olivert Riera in bug #441420; use a patch instead of a chain of seds for the makefile changes, which also saves us from using flag-o-matic.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
9
10 Revision Changes Path
11 1.22 net-analyzer/bwmon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwmon/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwmon/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwmon/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bwmon/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 4 Nov 2012 20:22:33 -0000 1.21
24 +++ ChangeLog 5 Nov 2012 02:58:44 -0000 1.22
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-analyzer/bwmon
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwmon/ChangeLog,v 1.21 2012/11/04 20:22:33 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwmon/ChangeLog,v 1.22 2012/11/05 02:58:44 flameeyes Exp $
30 +
31 +*bwmon-1.3-r2 (05 Nov 2012)
32 +
33 + 05 Nov 2012; Diego E. Pettenò <flameeyes@g.o> +bwmon-1.3-r2.ebuild,
34 + +files/bwmon-1.3-build.patch, +files/bwmon-1.3-overflow.patch:
35 + Fix overflow identified by Vicente Olivert Riera in bug #441420; use a patch
36 + instead of a chain of seds for the makefile changes, which also saves us from
37 + using flag-o-matic.
38
39 04 Nov 2012; Agostino Sarubbo <ago@g.o> bwmon-1.3-r1.ebuild:
40 Stable for amd64, wrt bug #441420
41
42
43
44 1.1 net-analyzer/bwmon/bwmon-1.3-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwmon/bwmon-1.3-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwmon/bwmon-1.3-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: bwmon-1.3-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwmon/bwmon-1.3-r2.ebuild,v 1.1 2012/11/05 02:58:44 flameeyes Exp $
54
55 EAPI="4"
56
57 inherit eutils toolchain-funcs
58
59 DESCRIPTION="Simple ncurses bandwidth monitor"
60 HOMEPAGE="http://bwmon.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
62
63 DEPEND="sys-libs/ncurses"
64 RDEPEND="${DEPEND}"
65
66 SLOT="0"
67 LICENSE="GPL-2 public-domain"
68 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
69 IUSE=""
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-build.patch
73 # Fix a typo in help wrt bug #263326
74 epatch "${FILESDIR}"/${P}-typo-fix.patch
75 epatch "${FILESDIR}"/${P}-overflow.patch
76 }
77
78 src_compile() {
79 emake -Csrc CC="$(tc-getCC)"
80 }
81
82 src_install () {
83 dobin ${PN}
84 dodoc README
85 }