blob: e078ca269b8a8bfe440c54b2c38a2b87778f8064 (
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
|
# Maintainer: Jonathan Steel <jsteel at archlinux.org>
# Maintainer: Andreas Baumann <mail at andreasbaumann dot cc>
pkgname=thruk
pkgver=3.20
pkgrel=1
pkgdesc="Multibackend monitoring webinterface for Naemon, Nagios, Icinga and Shinken"
arch=('any')
url="http://thruk.org"
license=('GPL2')
depends=('perl' 'apache' 'mod_fcgid' 'perl-plack' 'perl-json-xs'
'perl-date-calc' 'perl-file-slurp' 'perl-log-log4perl'
'perl-log-dispatch' 'perl-fcgi' 'perl-uri' 'perl-html-parser'
'perl-template-toolkit' 'perl-mime-lite' 'perl-gd'
'perl-lwp-protocol-https' 'perl-cpanel-json-xs'
'perl-crypt-rijndael' 'perl-module-install')
conflicts=('naemon-thruk')
replaces=('naemon-thruk')
backup=('etc/thruk/cgi.cfg' 'etc/thruk/htpasswd'
'etc/thruk/log4perl.conf' 'etc/thruk/menu_local.conf'
'etc/thruk/naglint.conf' 'etc/httpd/conf/extra/thruk.conf'
'etc/thruk/thruk_local.conf' 'etc/logrotate.d/thruk-base')
source=(http://download.thruk.org/pkg/v$pkgver/src/$pkgname-$pkgver.tar.gz)
md5sums=('072a2a378b1ea009860aa337829087f8')
install="thruk.install"
build() {
cd $pkgname-$pkgver
# ArchlinuxARM and other distros might not be recognized
sed -i 's/\(die(sprintf("Unable to detect distribution and version\)/#\1/g' configure
./configure --prefix=/usr \
--exec-prefix=/bin \
--bindir=/usr/bin \
--sysconfdir=/etc/thruk \
--localstatedir=/var/lib/thruk \
--libdir=/var/lib \
--datadir=/usr/share/thruk \
--mandir=/usr/share/man \
--with-initdir=/etc/thruk \
--with-logdir=/var/log/thruk \
--with-checkresultdir=/var/cache/naemon/checkresults \
--with-tempdir=/var/lib/thruk \
--with-logrotatedir=/etc/logrotate.d
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir"/ install
install -Dm644 support/apache_fcgid.conf "$pkgdir"/etc/httpd/conf/extra/$pkgname.conf
install -dm755 "$pkgdir"/etc/thruk/panorama
chown -R 33:33 "$pkgdir"/var/{lib,log}/thruk/ "$pkgdir"/etc/thruk/panorama/
chmod 770 "$pkgdir"/var/lib/thruk/
# Exclude /var/lib/thruk as logrotate doesn't like the permissions there
# and there are no logs
sed -i 's_^/.* _/var/log/thruk/*.log _' "$pkgdir"/etc/logrotate.d/thruk-base
# Set log owner to http rather than build user
sed -i 's/644.*/644 http http/' "$pkgdir"/etc/logrotate.d/thruk-base
}
|