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: Tue, 07 Feb 2017 15:52:27
Message-Id: 1486482695.89d75131329a93fa67348749b03173485eedad16.jer@gentoo
1 commit: 89d75131329a93fa67348749b03173485eedad16
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 7 15:51:35 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 7 15:51:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d75131
7
8 net-analyzer/cacti-spine: Version bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-analyzer/cacti-spine/Manifest | 1 +
13 net-analyzer/cacti-spine/cacti-spine-1.0.1.ebuild | 48 +++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/net-analyzer/cacti-spine/Manifest b/net-analyzer/cacti-spine/Manifest
17 index 03adbcd..04afb57 100644
18 --- a/net-analyzer/cacti-spine/Manifest
19 +++ b/net-analyzer/cacti-spine/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cacti-spine-0.8.8h.tar.gz 804951 SHA256 a693136839bd7d03cae5b3ff4614a4d21a2153ffb14d09fc061b843ab0b2bb30 SHA512 6a7147ab645be44de0d330c7801e569705817da10bf6cedba82c712e1701ada8aa8924a6b3b063ea680e6af24f815d6767e8773ad7b8da212abfa082b4211bd4 WHIRLPOOL 36daed4986ca84883e51ab6b02ebb2ade00205c30705cfc94e73835bc2fc427a60a2dba9c7ca3665d0c0b2fca21afab77d94cde63b740f3734f9279c929cccaf
22 DIST cacti-spine-1.0.0.tar.gz 800770 SHA256 074528eec16e8a49d535ce96d2347bd2a891a56722b261d744225d9f90b6382f SHA512 458b0050ceff3a9e2d31c54c177d75f8d36ff521204d5f7b52a5fb9ff6082c25ef98f46d80dc6c79816e5a977f5b61decac03b625728fc9dc654170e3ce3e87f WHIRLPOOL 3c24d028606ab382ea61feeecda141c96d6b2a588247656285bbb832e309d1e6acd086a8464c9083cc19c777fcd0e15bff53aad417d8889e3b08a85aa38b5be1
23 +DIST cacti-spine-1.0.1.tar.gz 800797 SHA256 75b699bd4a85389a4fe026423aae97b51e9f6b091cffbfb6b41d5785d7423330 SHA512 c5b2f22c6304f5a95e3db58609fb430fc3fb1ba01de6a0817bc6d86ea94af791e55a4985496980b472ce88723ee498dbb4e8a004be4d41e61b795a7b510af999 WHIRLPOOL a67b29de02b0b21cdd65c8c1aefd89a1b0c74eff4ab7dcb6395ed2bff8d0d14f32c579df8c55adca0e3b6c1d9dd01693b19db54efdb80ec10042913bcfc4cef7
24
25 diff --git a/net-analyzer/cacti-spine/cacti-spine-1.0.1.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.0.1.ebuild
26 new file mode 100644
27 index 00000000..1dbd777
28 --- /dev/null
29 +++ b/net-analyzer/cacti-spine/cacti-spine-1.0.1.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +inherit autotools eutils
37 +
38 +MY_P=${PN}-${PV/_p/-}
39 +
40 +DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
41 +HOMEPAGE="http://cacti.net/spine_info.php"
42 +SRC_URI="http://www.cacti.net/downloads/spine/${MY_P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
47 +
48 +CDEPEND="
49 + dev-libs/openssl:*
50 + net-analyzer/net-snmp
51 + virtual/mysql
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 + insinto /etc/
75 + insopts -m0640 -o root
76 + newins spine.conf{.dist,}
77 + dodoc ChangeLog
78 +}