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/cacti-spine/
Date: Mon, 03 Aug 2020 05:06:44
Message-Id: 1596431199.83424b9c6ab73fb550383c2820f3a2128ecc015d.jer@gentoo
1 commit: 83424b9c6ab73fb550383c2820f3a2128ecc015d
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 05:06:07 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 05:06:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83424b9c
7
8 net-analyzer/cacti-spine: Version 1.2.14
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 net-analyzer/cacti-spine/Manifest | 1 +
14 net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild | 51 ++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/net-analyzer/cacti-spine/Manifest b/net-analyzer/cacti-spine/Manifest
18 index 98369352a79..ce570009bfd 100644
19 --- a/net-analyzer/cacti-spine/Manifest
20 +++ b/net-analyzer/cacti-spine/Manifest
21 @@ -1 +1,2 @@
22 DIST cacti-spine-1.2.13.tar.gz 107543 BLAKE2B e0de75688334d27604a76c00a09ac53587a1e57f45df925e30a1a88a5e0449df803dfad901328c65b55484bc9022bf81d53880f17d4bd4efd9214315f01f7e92 SHA512 86d44195847c7b3acb1f6aed2bd6a57f562645b20724560d6b4bf7962707be4eb2f5326731453937b64420b5d51b714aecbd8dbea58d95f29ef4341515df8b00
23 +DIST cacti-spine-1.2.14.tar.gz 107577 BLAKE2B 5865d93ffefeeafac1d2245000467deac79f8008e81b66de310bf08e7aa31f17299a82fc107ad49c3741bc2f183bdbc9554f814bf9e3e4b1dc85e267e4f16112 SHA512 44dec1077b419dfc987a1d423f2df597bf2026ca7f39aaafabfc7de9e6fdc616f505b86ace43bb2ad628f220cf8d8cf136a04f00c4fd23ab73da75068f804999
24
25 diff --git a/net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild
26 new file mode 100644
27 index 00000000000..a5c1da23c06
28 --- /dev/null
29 +++ b/net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild
30 @@ -0,0 +1,51 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit autotools
36 +
37 +MY_P=${PN}-${PV/_p/-}
38 +
39 +DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
40 +HOMEPAGE="https://cacti.net/spine_info.php"
41 +SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz"
42 +
43 +LICENSE="LGPL-2.1"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="libressl"
47 +
48 +CDEPEND="
49 + !libressl? ( dev-libs/openssl:0= )
50 + libressl? ( dev-libs/libressl:0= )
51 + net-analyzer/net-snmp:=
52 + dev-db/mysql-connector-c:0=
53 +"
54 +DEPEND="
55 + ${CDEPEND}
56 + sys-apps/help2man
57 +"
58 +RDEPEND="
59 + ${CDEPEND}
60 + >net-analyzer/cacti-0.8.8
61 +"
62 +PATCHES=(
63 + "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch
64 +)
65 +
66 +src_prepare() {
67 + default
68 +
69 + eautoreconf
70 +}
71 +
72 +src_install() {
73 + dosbin spine
74 +
75 + insinto /etc/
76 + insopts -m0640 -o root
77 + newins spine.conf{.dist,}
78 +
79 + doman spine.1
80 + dodoc CHANGELOG
81 +}