summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2006-07-16 21:41:01 +0000
committerMichael Imhof <tantive@gentoo.org>2006-07-16 21:41:01 +0000
commitf3ca53a5b753d5feae85e0716cab0fe2b4c14318 (patch)
treee2b252b6acc90df6bce9451024ee1b3959ae5840 /sys-cluster
parentAdd ~x86-fbsd keyword. (diff)
downloadgentoo-2-f3ca53a5b753d5feae85e0716cab0fe2b4c14318.tar.gz
gentoo-2-f3ca53a5b753d5feae85e0716cab0fe2b4c14318.tar.bz2
gentoo-2-f3ca53a5b753d5feae85e0716cab0fe2b4c14318.zip
Version bumped. Closes #140650.
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/ganglia/ChangeLog7
-rw-r--r--sys-cluster/ganglia/files/digest-ganglia-3.0.22
-rw-r--r--sys-cluster/ganglia/files/digest-ganglia-3.0.33
-rw-r--r--sys-cluster/ganglia/ganglia-3.0.3.ebuild46
4 files changed, 57 insertions, 1 deletions
diff --git a/sys-cluster/ganglia/ChangeLog b/sys-cluster/ganglia/ChangeLog
index b23f066dbe45..537625769060 100644
--- a/sys-cluster/ganglia/ChangeLog
+++ b/sys-cluster/ganglia/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-cluster/ganglia
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ganglia/ChangeLog,v 1.4 2006/01/23 01:46:08 tantive Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ganglia/ChangeLog,v 1.5 2006/07/16 21:41:01 tantive Exp $
+
+*ganglia-3.0.3 (16 Jul 2006)
+
+ 16 Jul 2006; Michael Imhof <tantive@gentoo.org> +ganglia-3.0.3.ebuild:
+ Version bumped. Closes #140650.
*ganglia-3.0.2 (23 Jan 2006)
diff --git a/sys-cluster/ganglia/files/digest-ganglia-3.0.2 b/sys-cluster/ganglia/files/digest-ganglia-3.0.2
index 074d4210bc65..076daadcdd24 100644
--- a/sys-cluster/ganglia/files/digest-ganglia-3.0.2
+++ b/sys-cluster/ganglia/files/digest-ganglia-3.0.2
@@ -1 +1,3 @@
MD5 1a57b152cd0903eee4f19f11603e10fc ganglia-3.0.2.tar.gz 3408269
+RMD160 7ce35377c68a8ac944417db5ef893f06f7925bfb ganglia-3.0.2.tar.gz 3408269
+SHA256 c3e28fec0af62d7fefa865175558e6415be1106138590824726a62569ae6e628 ganglia-3.0.2.tar.gz 3408269
diff --git a/sys-cluster/ganglia/files/digest-ganglia-3.0.3 b/sys-cluster/ganglia/files/digest-ganglia-3.0.3
new file mode 100644
index 000000000000..9aa86cbfb02d
--- /dev/null
+++ b/sys-cluster/ganglia/files/digest-ganglia-3.0.3
@@ -0,0 +1,3 @@
+MD5 c48320a112db20e8372ae8e89d97583e ganglia-3.0.3.tar.gz 2824785
+RMD160 4f12caf6b4e583fc141aa4b68caef4bfa064263f ganglia-3.0.3.tar.gz 2824785
+SHA256 02e6272aa5f614a5ea3336c8cc4e1cdcd794893114d08dda39188c010154deab ganglia-3.0.3.tar.gz 2824785
diff --git a/sys-cluster/ganglia/ganglia-3.0.3.ebuild b/sys-cluster/ganglia/ganglia-3.0.3.ebuild
new file mode 100644
index 000000000000..08b5d2a96ae7
--- /dev/null
+++ b/sys-cluster/ganglia/ganglia-3.0.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ganglia/ganglia-3.0.3.ebuild,v 1.1 2006/07/16 21:41:01 tantive Exp $
+
+DESCRIPTION="Ganglia is a scalable distributed monitoring system for high-performance computing systems such as clusters and Grids"
+HOMEPAGE="http://ganglia.sourceforge.net/"
+SRC_URI="mirror://sourceforge/ganglia/ganglia-${PV}.tar.gz"
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~amd64"
+IUSE=""
+
+DEPEND="net-analyzer/rrdtool"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --enable-gexec \
+ --with-gmetad || die "./configure failed"
+
+ emake || die
+}
+
+src_install() {
+
+ einstall || die
+
+ insinto /etc
+ #doins gmond/gmond.conf
+ doins gmetad/gmetad.conf
+ doman mans/{gmetad.1,gmetric.1,gmond.1,gstat.1}
+ doman gmond/gmond.conf.5
+ dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
+ keepdir /var/lib/ganglia/rrds
+ fowners nobody:nobody /var/lib/ganglia/rrds
+ exeinto /etc/init.d
+ newexe ${FILESDIR}/gmond.rc gmond
+ newexe ${FILESDIR}/gmetad.rc gmetad
+
+}