# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="A tool to collect system statistics into RRD files" HOMEPAGE="http://verplant.org/collectd/" SRC_URI="http://verplant.org/collectd/files/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="lm_sensors" DEPEND=">=net-analyzer/rrdtool-1.2 lm_sensors? ( sys-apps/lm_sensors )" src_unpack() { unpack "${A}" epatch ${FILESDIR}/pidfile-${PV}.patch } src_compile() { econf || die econf failed emake || die emake failed } src_install() { make DESTDIR=${D} install || die install failed dodoc AUTHORS ChangeLog README keepdir /var/lib/collectd exeinto /etc/init.d newexe ${FILESDIR}/${P}.initd collectd insinto /etc/conf.d newins ${FILESDIR}/${P}.confd collectd }