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, 12 Aug 2019 07:26:05
Message-Id: 1565594759.fb873c59b0a8f76df92bfeeac8a158cc19cf7e22.jer@gentoo
1 commit: fb873c59b0a8f76df92bfeeac8a158cc19cf7e22
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 12 07:25:46 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 12 07:25:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb873c59
7
8 net-analyzer/cacti-spine: Version 1.2.5
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
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.5.ebuild | 50 +++++++++++++++++++++++
15 2 files changed, 51 insertions(+)
16
17 diff --git a/net-analyzer/cacti-spine/Manifest b/net-analyzer/cacti-spine/Manifest
18 index 2738c9aeb71..0b6830808d5 100644
19 --- a/net-analyzer/cacti-spine/Manifest
20 +++ b/net-analyzer/cacti-spine/Manifest
21 @@ -1,2 +1,3 @@
22 DIST cacti-spine-1.1.38.tar.gz 805437 BLAKE2B 32d934f54e00d83e9807dd194a7cacf8d5526c8e5b84c44ffad201c07edcb117f862266843552299fe04cc780575b9b2dc7129a106a20bd709cb82844ade7812 SHA512 5409a690e89fcc74e1e87e34e1918cab27d1243825955eb8256a92f8e9658f312345c66b338a4a07a0e38c94e3275131cb4e58fb70e7b59837c0e6c47746e45e
23 DIST cacti-spine-1.2.2.tar.gz 2310298 BLAKE2B 782fb21fda6acf06434c6e996863a235670970b19e5218624723df4736c388c2d9f00c1e3cc623dad7973bcbbe7ae5d4bbe89e366c1f47ce83eac9b416f88cb4 SHA512 ef2f839f7b247439a8576d49e311546cfd2346eea06cfb26b7a05d4757ae28334e6ed6ea00396027dc6c0c6e107121ed38f356ba62d8202003553fea3b5d139e
24 +DIST cacti-spine-1.2.5.tar.gz 105494 BLAKE2B 1bd2f33cee841fb7b05a1a32d3d0d2824c36ccdc69fbf52c48cfe2d7bdbface4c1925261c8643c19addde90346c5ecdee547d8014705dc34800f59eab6ac248c SHA512 5bbf5f68e0d3477d43afee57bc86bfeb61a3ddaa18f7c0e5e0c2413bde6646bcd662d93e4c124daa6eaef5bca5843fb359b733c5189d9f43a34a14fba7f03682
25
26 diff --git a/net-analyzer/cacti-spine/cacti-spine-1.2.5.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.2.5.ebuild
27 new file mode 100644
28 index 00000000000..9a49a508792
29 --- /dev/null
30 +++ b/net-analyzer/cacti-spine/cacti-spine-1.2.5.ebuild
31 @@ -0,0 +1,50 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit autotools
37 +
38 +MY_P=${PN}-${PV/_p/-}
39 +
40 +DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
41 +HOMEPAGE="https://cacti.net/spine_info.php"
42 +SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
47 +
48 +CDEPEND="
49 + dev-libs/openssl:0=
50 + net-analyzer/net-snmp:=
51 + dev-db/mysql-connector-c:0=
52 +"
53 +DEPEND="
54 + ${CDEPEND}
55 + sys-apps/help2man
56 +"
57 +RDEPEND="
58 + ${CDEPEND}
59 + >net-analyzer/cacti-0.8.8
60 +"
61 +PATCHES=(
62 + "${FILESDIR}"/${PN}-0.8.8d-ping.patch
63 + "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch
64 +)
65 +
66 +src_prepare() {
67 + default
68 +
69 + AT_M4DIR="config" 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 +}