Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/bing: ChangeLog bing-1.1.3-r1.ebuild
Date: Mon, 30 Aug 2010 21:37:59
Message-Id: 20100830213751.1CFF720051@flycatcher.gentoo.org
1 xmw 10/08/30 21:37:51
2
3 Modified: ChangeLog
4 Added: bing-1.1.3-r1.ebuild
5 Log:
6 Respect CC, EAPI-2 update
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 net-analyzer/bing/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bing/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bing/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bing/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bing/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 23 Sep 2009 18:18:10 -0000 1.16
23 +++ ChangeLog 30 Aug 2010 21:37:50 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-analyzer/bing
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bing/ChangeLog,v 1.16 2009/09/23 18:18:10 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bing/ChangeLog,v 1.17 2010/08/30 21:37:50 xmw Exp $
30 +
31 +*bing-1.1.3-r1 (30 Aug 2010)
32 +
33 + 30 Aug 2010; Michael Weber <xmw@g.o> +bing-1.1.3-r1.ebuild:
34 + Updated ebuild to respect CC
35
36 23 Sep 2009; Patrick Lauer <patrick@g.o> bing-1.1.3.ebuild:
37 Remove virtual/libc
38
39
40
41 1.1 net-analyzer/bing/bing-1.1.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bing/bing-1.1.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bing/bing-1.1.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bing-1.1.3-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/bing/bing-1.1.3-r1.ebuild,v 1.1 2010/08/30 21:37:50 xmw Exp $
51
52 EAPI=2
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="A point-to-point bandwidth measurement tool."
57 SRC_URI="mirror://debian/pool/main/b/bing/${PN}_${PV}.orig.tar.gz"
58 HOMEPAGE="http://fgouget.free.fr/bing/index-en.shtml"
59
60 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
61 SLOT="0"
62 LICENSE="as-is"
63 IUSE=""
64
65 RDEPEND=""
66 DEPEND=">=sys-apps/sed-4"
67
68 src_prepare() {
69 sed -i -e "s:#COPTIM = -g: COPTIM = ${CFLAGS}:" Makefile || die
70 }
71
72 src_compile() {
73 emake CC="$(tc-getCC)"|| die "emake failed"
74 }
75
76 src_install() {
77 dobin bing || die
78 doman unix/bing.8 || die
79 dodoc ChangeLog Readme.{1st,txt} || die
80 }