summaryrefslogtreecommitdiff
path: root/community/collectd/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/collectd/PKGBUILD')
-rw-r--r--community/collectd/PKGBUILD18
1 files changed, 8 insertions, 10 deletions
diff --git a/community/collectd/PKGBUILD b/community/collectd/PKGBUILD
index 3f8ac903d..07b3708d9 100644
--- a/community/collectd/PKGBUILD
+++ b/community/collectd/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 86998 2013-03-25 19:16:35Z bpiotrowski $
+# $Id: PKGBUILD 88406 2013-04-17 07:01:42Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Gerhard Brauer <gerhard.brauer@web.de>
pkgname=collectd
-pkgver=5.2.1
+pkgver=5.3.0
pkgrel=1
pkgdesc='Daemon which collects system performance statistics periodically'
url='http://collectd.org/'
@@ -42,39 +42,37 @@ source=("${url}files/${pkgname}-${pkgver}.tar.gz"
'libperl.patch'
'service'
'rc.d')
-sha1sums=('2c51c21d339c221bd9f94b1ee2b44b1e388d6b39'
+sha1sums=('53879095aa51b7dd0b30882b0c9b6ce8c93a8539'
'245c098d121a4a05594553583310953b3a2f6461'
'b56907f532b9174e1b6995aadb518228d7464d3b'
'0f441718d5519cb043b1130e5a1d0379078adbcc')
backup=('etc/collectd.conf')
options=('!libtool')
-install=install
-build() {
+prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
-
patch -p1 -i ../libperl.patch
autoconf
+ sed 's/-Werror//g' -i src/Makefile.in
+}
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
./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
-
rmdir "${pkgdir}/var/run" # FS#30201
install -Dm755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}"
install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/collectd.service
install -Dm644 contrib/collectd2html.pl "${pkgdir}"/usr/share/collectd/collectd2html.pl
- mv "${pkgdir}"/usr/man/man3 "${pkgdir}"/usr/share/man # perl man magic ignores datarootdir
}