Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/braa/
Date: Wed, 08 Jan 2020 07:39:22
Message-Id: 1578469156.e403149704100012821edbd7bb704b41fc53825a.jer@gentoo
1 commit: e403149704100012821edbd7bb704b41fc53825a
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 8 07:28:56 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 8 07:39:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4031497
7
8 net-analyzer/braa: EAPI=7
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 net-analyzer/braa/braa-0.82-r1.ebuild | 27 +++++++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/net-analyzer/braa/braa-0.82-r1.ebuild b/net-analyzer/braa/braa-0.82-r1.ebuild
17 new file mode 100644
18 index 00000000000..c22f36d8711
19 --- /dev/null
20 +++ b/net-analyzer/braa/braa-0.82-r1.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit toolchain-funcs
27 +
28 +DESCRIPTION="Quick and dirty mass SNMP scanner"
29 +HOMEPAGE="http://s-tech.elsat.net.pl/braa/"
30 +SRC_URI="http://s-tech.elsat.net.pl/braa/${P}.tar.gz"
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~x86"
34 +
35 +PATCHES=(
36 + "${FILESDIR}"/${PN}-0.8-gentoo.diff
37 +)
38 +
39 +src_prepare() {
40 + default
41 + sed -i braa.c -e 's|0.81|0.82|g' || die
42 + tc-export CC
43 +}
44 +
45 +src_install() {
46 + dobin braa
47 + dodoc README
48 +}