# $Id: PKGBUILD 56935 2011-10-17 07:29:09Z bisson $ # Maintainer: Gaetan Bisson # Contributor: Gerhard Brauer pkgname=collectd pkgver=5.0.1 pkgrel=1 pkgdesc='Daemon which collects system performance statistics periodically' arch=('i686' 'x86_64') url='http://collectd.org/' license=('GPL') options=('!libtool') backup=('etc/collectd.conf') optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins' 'libdbi: dbi plugin' 'libesmtp: notify_email plugin' 'libgcrypt: encryption and authentication for network plugin' 'iptables: iptables plugin' 'libmemcached: memcachec plugin' 'libmysqlclient: mysql plugin' 'iproute2: netlink plugin' 'net-snmp: snmp plugin' 'libnotify: notify_desktop plugin' 'liboping: ping plugin' 'libpcap: dns plugin' 'perl: perl plugin' 'postgresql-libs: postgresql plugin' 'python2: python plugin' 'rrdtool: rrdtool and rrdcached plugins' 'lm_sensors: lm_sensors and sensors plugins' 'libvirt: libvirt plugin' 'libxml2: ascent and libvirt plugins' 'xmms: xmms plugin' 'yajl: curl_json plugin') makedepends=('curl' 'libdbi' 'libesmtp' 'libgcrypt' 'iptables' 'libmemcached' 'libmysqlclient' 'iproute2' 'net-snmp' 'libnotify' 'liboping' 'libpcap' 'postgresql-libs' 'python2' 'rrdtool' 'lm_sensors' 'libvirt' 'libxml2' 'xmms' 'yajl') depends=('libtool') source=("${url}files/${pkgname}-${pkgver}.tar.gz" 'libperl.patch' 'rc.d') sha1sums=('ec1bf97d21a27d9b53b20f7dc4fb61441b4e42e0' 'b221352447b2d42cade4a65ced322bcff8a40366' '0f441718d5519cb043b1130e5a1d0379078adbcc') install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p1 -i ../libperl.patch autoconf ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --enable-static=no \ --with-python=/usr/bin/python2 make all } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install -D -m 755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}" install -D -m 644 contrib/collectd2html.pl "${pkgdir}"/usr/share/collectd/collectd2html.pl }