blob: 9e72f495dd9a8b0237daefd2c610521ec0b0a0d5 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit webapp
MY_PN="glpi-project"
MY_P=${P/_/-}
MY_PV=${PV/_/-}
DESCRIPTION="The Information Resource-Manager with an additional Administration Interface."
HOMEPAGE="http://www.glpi-project.org/"
SRC_URI="https://github.com/${MY_PN}/${PN}/releases/download/${MY_PV}/${MY_P}.tgz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
app-admin/webapp-config
"
RDEPEND="
dev-lang/php[curl,json,mysqli,session,unicode]
virtual/mysql
"
S="${WORKDIR}/${PN}"
pkg_config () {
webapp_pkg_setup
}
src_install () {
webapp_src_preinst
einfo "Installing files"
insinto "${MY_HTDOCSDIR}"
doins -r .
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_src_install
}
pkg_preinst () {
fowners -R root:apache "${MY_HTDOCSDIR}"
fperms -R g-w,o-rwx "${MY_HTDOCSDIR}"
# Allow writing to the config and files directories
for dir in config files ; do
fperms -R g+w "${MY_HTDOCSDIR}/${dir}"
done
}
|