blob: d206c4efd09f2448d255807e578b5305c9fd39be (
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
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=icingaweb2
pkgver=2.3.4
pkgrel=0
pkgdesc="Web Interface for Icinga2"
url="http://www.icinga.org"
arch="noarch"
license="GPL"
_php=php5
depends="icinga2 $_php ${_php}-gd ${_php}-ldap ${_php}-intl ${_php}-pgsql
${_php}-mysql ${_php}-gettext ${_php}-ctype icinga2 ${_php}-openssl
${_php}-json ${_php}-dom ${_php}-imagick ${_php}-pdo_mysql
${_php}-pdo_pgsql"
depends_dev=""
makedepends="$depends_dev"
pkggroups="icingaweb2"
install="$pkgname.pre-install $pkgname.post-install"
subpackages="$pkgname-doc $pkgname-bash-completion:bashcomp"
source="$pkgname-$pkgver.tar.gz::https://github.com/Icinga/${pkgname}/archive/v${pkgver}.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
return 0
}
package() {
cd "$_builddir"
mkdir -p "$pkgdir/etc/$pkgname"
mkdir -p "$pkgdir/usr/bin"
mkdir -p "$pkgdir/usr/share/webapps/$pkgname"
mkdir -p "$pkgdir/var/log/$pkgname"
mkdir -p "$pkgdir/usr/share/doc/$pkgname"
cp -r application doc library modules public bin etc "$pkgdir"/usr/share/webapps/$pkgname
ln -s /usr/share/webapps/icingaweb2/bin/icingacli "$pkgdir"/usr/bin/icingacli
chmod 2770 "$pkgdir"/etc/$pkgname
chmod 750 "$pkgdir"/var/log/$pkgname
install -Dm644 COPYING "$pkgdir/usr/share/licenses/icingaweb2/LICENSE"
cat >"$pkgdir"/usr/share/doc/$pkgname/README.alpine <<EOF
You need to add to $pkgroups group the owner of the user of your webserver
For nginx, as example:
# adduser nginx $pkgusers
or
#adduser nobody $pkgusers
For Apache:
# adduser apache $pkgusers
For lighttpd:
# adduser lighttpd $pkgusers
Also, you may remove the user of your webserver from group 'icingacmd' if no other icinga web interface is installed.
EOF
}
bashcomp() {
depends="bash"
pkgdesc="Bash completions for $pkgname"
arch="noarch"
cd "$_builddir"
mkdir -p "$subpkgdir"/usr/share/bash-completion/completions
mv etc/bash_completion.d/icingacli "$subpkgdir"/usr/share/bash-completion/completions/icingacli
}
md5sums="f04d9606f1e52463d11594f3bf492b5c icingaweb2-2.3.4.tar.gz"
sha256sums="057e9debfbd10df4278dfc675e507b11843478dd7f295c8554cdbc9317dfbd4e icingaweb2-2.3.4.tar.gz"
sha512sums="b46340563d9c26408f812ab2328520d289447ffc2ad2ca4419b7aa19b663a91fc9bc7841083e1f496bf40f29205f35c0bde2d5980592ac13eccfc8b2bb619b0d icingaweb2-2.3.4.tar.gz"
|