blob: 26a3a14e9606772d889c283327083ef99380c409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=collectd
pkgver=5.4.0
pkgrel=2
pkgdesc="The system statistics collection daemon"
url="http://collectd.org"
arch="all"
license="GPL2"
depends=""
makedepends="pkgconfig curl-dev net-snmp-dev postgresql-dev perl-dev
libgcrypt-dev mysql-dev zlib-dev openssl-dev iptables-dev rrdtool-dev
yajl-dev libvirt-dev lm_sensors-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-perl $pkgname-snmp
$pkgname-curl:_curl
$pkgname-write_http $pkgname-nginx $pkgname-apache $pkgname-postgresql
$pkgname-mysql $pkgname-network $pkgname-rrdtool $pkgname-sensors
$pkgname-python:_python $pkgname-iptables:_ipt $pkgname-bind
$pkgname-ascent"
source="http://collectd.org/files/collectd-$pkgver.tar.bz2
collectd.initd"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
update_config_sub || return 1
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
# we need -lm
sed -i -e 's/^collectd_LDADD = \(.*\)/collectd_LDADD = -lm \1/' \
-e 's/^collectd_nagios_LDADD = \(.*\)/collectd_nagios_LDADD = -lm \1/' \
src/Makefile.in || return 1
sed -i -e 's/_LIBADD =/_LIBADD = -lm/' \
src/libcollectdclient/Makefile.in || return 1
sed -i -e '/CFLAGS/s/-Werror//' configure src/Makefile.in || return 1
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc/collectd \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstate=/var \
--with-libiptc \
--enable-rrdtool \
|| return 1
make LDADD='-lm' || return 1
# disable network plugin by default since its in a subpackage
sed -i -e 's/^LoadPlugin network/#LoadPlugin network/' \
src/collectd.conf
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la \
"$pkgdir"/usr/lib/collectd/*.la || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
}
perl() {
pkgdesc="perl bindings to collectd"
depends="perl"
arch="noarch"
install -d "$subpkgdir"/usr/lib/ "$subpkgdir"/usr/share
mv "$pkgdir"/usr/lib/perl* "$subpkgdir"/usr/lib/
# mv "$pkgdir"/usr/share/perl* "$subpkgdir"/usr/share/
}
_plugin() {
local mod=$1
local desc=${2:-$mod}
pkgdesc="$desc pluin for collectd"
depends="collectd"
install -d "$subpkgdir"/usr/lib/collectd
mv "$pkgdir"/usr/lib/collectd/$mod.so "$subpkgdir"/usr/lib/collectd/
}
snmp() { _plugin snmp; }
_curl() { _plugin 'curl*'; }
write_http() { _plugin write_http; }
nginx() { _plugin nginx; }
apache() { _plugin apache; }
postgresql() { _plugin postgresql; }
mysql() { _plugin mysql; }
network() { _plugin network; }
rrdtool() { _plugin 'rrd*'; }
sensors() { _plugin sensors; }
_python() { _plugin python; }
_ipt() { _plugin iptables; }
bind() { _plugin bind; }
ascent() { _plugin ascent; }
md5sums="bbcc8d0dd466d1ec7d8311646d5bddd8 collectd-5.4.0.tar.bz2
13a36ae2f92634b5619ab94224e1b77d collectd.initd"
sha256sums="90973894a1f10775d409fe23ce7bc4d89c1b7c6f4d9918b305d160605871923e collectd-5.4.0.tar.bz2
418d43a5ab08a8097dd2ac5c1e839df64032e96c295f89fa3b8df08a08c3dc35 collectd.initd"
sha512sums="10de94d082e6bf2e0a8e2f0b179868c0f25b223c61cb8a5fda641d01f90d6332062459410d54d74a4d666f7149bb429976e9542dabeda988ed6772df9001b222 collectd-5.4.0.tar.bz2
fd3ba6914d1e95f255f43165f7d38405736799037d08300378678fa3a9c628b14b6a867d8e0367798cd488105547ef8eca4bef7e4b7de1814a12aa0072e4cbee collectd.initd"
|