Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/cbm/
Date: Mon, 17 May 2021 02:59:32
Message-Id: 1621219278.59ed8987bf05d2fddb92a4d501b2be3251b02850.sam@gentoo
1 commit: 59ed8987bf05d2fddb92a4d501b2be3251b02850
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 17 02:41:18 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 17 02:41:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ed8987
7
8 net-analyzer/cbm: add 0.3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/cbm/Manifest | 1 +
13 net-analyzer/cbm/cbm-0.3.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/net-analyzer/cbm/Manifest b/net-analyzer/cbm/Manifest
17 index a7868e03635..4a53484042a 100644
18 --- a/net-analyzer/cbm/Manifest
19 +++ b/net-analyzer/cbm/Manifest
20 @@ -1 +1,2 @@
21 DIST cbm-0.2.tar.gz 16043 BLAKE2B a5c041ac33b4694c2933bee0d71786896ec30d0735b921f34cfb6a247179709afd9fa6d90f0602869976f334391e8138830f538b18a08a7396f4049e26029b24 SHA512 ca9dbbd73e707dca3b7bf10201840de28b2b3956ce3cb2fc76e1b530caf6ff883eb437f8be0df1efe3b5d8398c4949ea00de4ba48ed26b27afa21cf445d5d076
22 +DIST cbm-0.3.tar.gz 16473 BLAKE2B 165b01ec6d0fdd691763d990e1fe81b010942077f593e64fd3ccf5f070960612ddb2ccd1aef87530b0d0fe4c40e5d758c55d33b4b6e1c4b850769ef46b8a6b79 SHA512 dd4845465b34b978e6c696d6b0fa61969aead4bdd4474a264667af63cd99c5a1035f4961645237c3870dc366ea4b131c2e005d2abb2774814d127a61ecae8e29
23
24 diff --git a/net-analyzer/cbm/cbm-0.3.ebuild b/net-analyzer/cbm/cbm-0.3.ebuild
25 new file mode 100644
26 index 00000000000..22ae3162bb6
27 --- /dev/null
28 +++ b/net-analyzer/cbm/cbm-0.3.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="Color Bandwidth Meter"
38 +HOMEPAGE="
39 + http://www.isotton.com/software/unix/cbm/
40 + https://github.com/resurrecting-open-source-projects/cbm
41 +"
42 +SRC_URI="https://github.com/resurrecting-open-source-projects/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="sys-libs/ncurses:="
49 +DEPEND="${RDEPEND}"
50 +BDEPEND="app-text/docbook-xml-dtd:4.4
51 + app-text/xmlto
52 + virtual/pkgconfig
53 +"
54 +
55 +PATCHES=(
56 + "${FILESDIR}"/${PN}-0.2-tinfo.patch
57 +)
58 +
59 +src_prepare() {
60 + default
61 + eautoreconf
62 +}