diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-04-07 10:55:48 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-04-07 10:55:48 +0200 |
commit | cead7f930386bcd5ffa7fc75586409092879079c (patch) | |
tree | afca27ee7e17da1ab33b00f6250a63ea73281dd4 /net-analyzer | |
parent | www-client/opera-beta: Old. (diff) | |
download | gentoo-cead7f930386bcd5ffa7fc75586409092879079c.tar.gz gentoo-cead7f930386bcd5ffa7fc75586409092879079c.tar.bz2 gentoo-cead7f930386bcd5ffa7fc75586409092879079c.zip |
net-analyzer/cacti-spine: Version bump.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/cacti-spine/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/cacti-spine/cacti-spine-1.1.2.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/net-analyzer/cacti-spine/Manifest b/net-analyzer/cacti-spine/Manifest index 3fdf999e375a..f73ef1cb802a 100644 --- a/net-analyzer/cacti-spine/Manifest +++ b/net-analyzer/cacti-spine/Manifest @@ -1,3 +1,4 @@ DIST cacti-spine-0.8.8h.tar.gz 804951 SHA256 a693136839bd7d03cae5b3ff4614a4d21a2153ffb14d09fc061b843ab0b2bb30 SHA512 6a7147ab645be44de0d330c7801e569705817da10bf6cedba82c712e1701ada8aa8924a6b3b063ea680e6af24f815d6767e8773ad7b8da212abfa082b4211bd4 WHIRLPOOL 36daed4986ca84883e51ab6b02ebb2ade00205c30705cfc94e73835bc2fc427a60a2dba9c7ca3665d0c0b2fca21afab77d94cde63b740f3734f9279c929cccaf DIST cacti-spine-1.0.6.tar.gz 801009 SHA256 b185889de8b500269bb87c962d44101eb29eac97597c61e4d535794120a340b4 SHA512 4d2374350fbcfa05f5e794c95a02fab564b2060c6f0714fe0851eab4515747aaeb98b57d340c85de2c9126e2c31451a4e62c6c1587582e41a8903716c777cbbc WHIRLPOOL 8741ea15dccd9553cb1a7585c71d6e8a964da81355ffef9905f53b4265096c5f788b1a8a7c8879c24fa7b5cf107d35a7eb4ca6133da47a1c33767c2f1772f6f1 DIST cacti-spine-1.1.0.tar.gz 800762 SHA256 7a70a2fd1ac4a86d764efb642fa97d52ab09fede879c9a674ef8878c1532b86e SHA512 6e8cf190925e7c17e63552e04d634e46d118479244187197be39a11a20ee540434365e798400d9cd357bb8462e38250f4a8a36db9a974d74a8b26cc1768f403a WHIRLPOOL c702192fc7181601d4b0a4115146b6fe526490fb50cd2ab0fe0f93e22dc30ed0421902ca2d0e3f271d1961257007202cabaa8e554faa2900dcf93fe4f8bddb8a +DIST cacti-spine-1.1.2.tar.gz 801236 SHA256 ee14190ec456572b743eb195e1ec7b7a31f0c682bafa5bf80158108c1a4e9819 SHA512 6270754e34b0282fb3bdb174086299cb50f2a29fc2197620058cdfa5903713508e133e76f70c994b47375d4da3dfd9b5d310bcd0575f908eb3148674de057165 WHIRLPOOL 4a3d87fd04cd788cce9e1e2c6754bf9ba80ed59d80b3c30d2263286bda6d5a9f1b805134c16b7a70e892bd69f7b17d7e6dbc54343700acd95881cc697f66d839 diff --git a/net-analyzer/cacti-spine/cacti-spine-1.1.2.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.1.2.ebuild new file mode 100644 index 000000000000..34727025866f --- /dev/null +++ b/net-analyzer/cacti-spine/cacti-spine-1.1.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools eutils + +MY_P=${PN}-${PV/_p/-} + +DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)" +HOMEPAGE="http://cacti.net/spine_info.php" +SRC_URI="http://www.cacti.net/downloads/spine/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +CDEPEND=" + dev-libs/openssl:* + net-analyzer/net-snmp + virtual/mysql +" +DEPEND=" + ${CDEPEND} + sys-apps/help2man +" +RDEPEND=" + ${CDEPEND} + >net-analyzer/cacti-0.8.8 +" +PATCHES=( + "${FILESDIR}"/${PN}-0.8.8d-ping.patch + "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch +) + +src_prepare() { + default + + AT_M4DIR="config" eautoreconf +} + +src_install() { + dosbin spine + insinto /etc/ + insopts -m0640 -o root + newins spine.conf{.dist,} + dodoc ChangeLog +} |