From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6751138334 for ; Tue, 20 Aug 2019 07:50:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC06DE077C; Tue, 20 Aug 2019 07:50:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8178E077C for ; Tue, 20 Aug 2019 07:50:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 65DC1349EEE for ; Tue, 20 Aug 2019 07:50:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B39FA4D4 for ; Tue, 20 Aug 2019 07:50:36 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1566287432.4b87613b200acaeb6d9c50069f37d8868402c2d3.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/cacti-spine/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/cacti-spine/cacti-spine-99999.ebuild X-VCS-Directories: net-analyzer/cacti-spine/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 4b87613b200acaeb6d9c50069f37d8868402c2d3 X-VCS-Branch: master Date: Tue, 20 Aug 2019 07:50:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fe3516fb-cdce-46d0-a196-0968f285722b X-Archives-Hash: b2fa319048398cb56f7a38eac5f534f1 commit: 4b87613b200acaeb6d9c50069f37d8868402c2d3 Author: Jeroen Roovers gentoo org> AuthorDate: Tue Aug 20 07:28:30 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue Aug 20 07:50:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b87613b net-analyzer/cacti-spine: Add live ebuild Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/cacti-spine/cacti-spine-99999.ebuild | 50 +++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/net-analyzer/cacti-spine/cacti-spine-99999.ebuild b/net-analyzer/cacti-spine/cacti-spine-99999.ebuild new file mode 100644 index 00000000000..c378e4a617f --- /dev/null +++ b/net-analyzer/cacti-spine/cacti-spine-99999.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools git-r3 + +MY_P=${PN}-${PV/_p/-} + +DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)" +HOMEPAGE="https://cacti.net/spine_info.php" +EGIT_REPO_URI="https://github.com/Cacti/spine" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="" + +CDEPEND=" + dev-libs/openssl:0= + net-analyzer/net-snmp:= + dev-db/mysql-connector-c:0= +" +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,} + + doman spine.1 + dodoc CHANGELOG +}