Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bing/
Date: Sat, 13 Oct 2018 11:04:36
Message-Id: 1539428620.c07b33415ae82c6298a9aab563fd5153f3730025.zlogene@gentoo
1 commit: c07b33415ae82c6298a9aab563fd5153f3730025
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 13 11:03:40 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 13 11:03:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c07b3341
7
8 net-analyzer/bing: revbump (EAPI=7)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 net-analyzer/bing/bing-1.1.3-r2.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/net-analyzer/bing/bing-1.1.3-r2.ebuild b/net-analyzer/bing/bing-1.1.3-r2.ebuild
17 new file mode 100644
18 index 00000000000..83f643000e8
19 --- /dev/null
20 +++ b/net-analyzer/bing/bing-1.1.3-r2.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2018 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="A point-to-point bandwidth measurement tool"
30 +SRC_URI="mirror://debian/pool/main/b/bing/${PN}_${PV}.orig.tar.gz"
31 +HOMEPAGE="http://fgouget.free.fr/bing/index-en.shtml"
32 +
33 +LICENSE="BSD-4"
34 +SLOT="0"
35 +KEYWORDS="amd64 ~arm ia64 ppc sparc x86"
36 +
37 +src_prepare() {
38 + default
39 + sed -i -e "s:#COPTIM = -g: COPTIM = ${CFLAGS}:" Makefile || die
40 +}
41 +
42 +src_compile() {
43 + emake CC="$(tc-getCC)"
44 +}
45 +
46 +src_install() {
47 + dobin bing
48 + doman unix/bing.8
49 + dodoc ChangeLog Readme.{1st,txt}
50 +}