From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-analyzer/rrdcollect/Manifest | 1 + .../files/rrdcollect-0.2.9-include.patch | 10 ++++++ net-analyzer/rrdcollect/metadata.xml | 12 +++++++ net-analyzer/rrdcollect/rrdcollect-0.2.9.ebuild | 41 ++++++++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 net-analyzer/rrdcollect/Manifest create mode 100644 net-analyzer/rrdcollect/files/rrdcollect-0.2.9-include.patch create mode 100644 net-analyzer/rrdcollect/metadata.xml create mode 100644 net-analyzer/rrdcollect/rrdcollect-0.2.9.ebuild (limited to 'net-analyzer/rrdcollect') diff --git a/net-analyzer/rrdcollect/Manifest b/net-analyzer/rrdcollect/Manifest new file mode 100644 index 000000000000..9f86921450bf --- /dev/null +++ b/net-analyzer/rrdcollect/Manifest @@ -0,0 +1 @@ +DIST rrdcollect-0.2.9.tar.gz 137397 SHA256 df738369c4f7c642e85ee1e0314c29cca19534c4d53074295b25c3b309ea1a50 SHA512 5f01b93a469d32f095b501c3611d4e31d354025848aeffd913db9625d0186a3e7d394dae1a2383449836c37e758a39a3473710a1855411288659fa6ac249e10f WHIRLPOOL 746ad907ab98db872e498695f56cf0579141726eebe505f2fbeda78a9c46bb41b6d2b59ca2a9f21efa1e1903cc31bbdb7a6c56ac17f3a2ab25a164464a5d41fa diff --git a/net-analyzer/rrdcollect/files/rrdcollect-0.2.9-include.patch b/net-analyzer/rrdcollect/files/rrdcollect-0.2.9-include.patch new file mode 100644 index 000000000000..69827b28358f --- /dev/null +++ b/net-analyzer/rrdcollect/files/rrdcollect-0.2.9-include.patch @@ -0,0 +1,10 @@ +--- a/src/checkpid.c ++++ b/src/checkpid.c +@@ -20,6 +20,7 @@ + + #include "rrdcollect.h" + #include ++#include /* flock() */ + + /* lockfile in rrdcollect.pid */ + /* five digits+"\n\0" */ diff --git a/net-analyzer/rrdcollect/metadata.xml b/net-analyzer/rrdcollect/metadata.xml new file mode 100644 index 000000000000..477804ead86d --- /dev/null +++ b/net-analyzer/rrdcollect/metadata.xml @@ -0,0 +1,12 @@ + + + + netmon + + Enable exec:/// support + Use the librrd library from net-analyzer/rrdtool + + + rrdcollect + + diff --git a/net-analyzer/rrdcollect/rrdcollect-0.2.9.ebuild b/net-analyzer/rrdcollect/rrdcollect-0.2.9.ebuild new file mode 100644 index 000000000000..f3c04ae5fedb --- /dev/null +++ b/net-analyzer/rrdcollect/rrdcollect-0.2.9.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Read system statistical data and feed it to RRDtool" +HOMEPAGE="http://rrdcollect.sourceforge.net/" +SRC_URI="mirror://sourceforge/rrdcollect/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="exec librrd pcre" + +DEPEND=" + librrd? ( net-analyzer/rrdtool ) + pcre? ( dev-libs/libpcre ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-include.patch +} + +src_configure() { + econf \ + $(use_enable exec) \ + $(use_with librrd) \ + $(use_with pcre libpcre) +} + +DOCS=( AUTHORS ChangeLog NEWS TODO ) + +src_install() { + default + docinto examples + dodoc doc/examples/* +} -- cgit v1.2.3-65-gdbad