blob: 764723fb60f9b0d5a9b5ed240714d2cd049936f4 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
WEBAPP_MANUAL_SLOT="yes"
inherit webapp
DESCRIPTION="Web frontend for sys-cluster/ganglia"
HOMEPAGE="http://ganglia.sourceforge.net"
SRC_URI="https://github.com/ganglia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="vhosts"
DEPEND="net-misc/rsync"
RDEPEND="
${DEPEND}
${WEBAPP_DEPEND}
>=sys-cluster/ganglia-3.3.7[-minimal]
dev-lang/php:*[ctype,gd,json,xml]
virtual/httpd-php
media-fonts/dejavu"
src_install() {
webapp_src_preinst
cd "${S}" || die
emake \
GDESTDIR="${MY_HTDOCSDIR}" \
DESTDIR="${D}" \
APACHE_USER=nobody \
install
webapp_configfile "${MY_HTDOCSDIR}"/conf_default.php
webapp_src_install
fowners -R nobody:nobody /var/lib/ganglia-web/dwoo
fperms -R 777 /var/lib/ganglia-web/dwoo
einstalldocs
}
pkg_postinst() {
webapp_pkg_postinst
# upgrade from < 3.5.6
if [ -d "${ROOT}"/var/lib/ganglia/dwoo ]; then
rm -rf "${ROOT}"/var/lib/ganglia/dwoo || die
fi
}
|