blob: b51420746ef7dfc8459c750e5d7964b4fbbc6b61 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit systemd user
# for not-stable releases set RC_SUFFIX="-xxxxxxxxxx"
RC_SUFFIX="-b647df56b7"
DESCRIPTION="Management Controller for UniFi APs"
HOMEPAGE="https://www.ubnt.com/download/unifi"
SRC_URI="http://dl.ubnt.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
LICENSE="GPL-3"
SLOT="0"
#KEYWORDS="~amd64"
IUSE=""
RESTRICT="mirror"
DEPEND=""
RDEPEND="dev-db/mongodb
virtual/jre"
S=${WORKDIR}/UniFi
QA_PREBUILT="/usr/lib64/unifi/lib/native/*"
pkg_setup() {
enewuser ${PN}
enewgroup ${PN}
}
src_install(){
static_dir="/usr/$(get_libdir)/${PN}"
#install static data
insinto ${static_dir}
doins -r *
#wrapper to work around mongodb-3.6 compat issue
exeinto ${static_dir}/bin/
newexe "${FILESDIR}"/mongod-wrapper mongod
#prepare runtime-data dirs which live in /var but are symlinked from static
#data dir, and are writable by non-root user
dodir /var/log/${PN}
fowners ${PN}:${PN} /var/log/${PN}
dosym ../../../var/log/${PN} ${static_dir}/logs
dodir /var/lib/${PN}/work
fowners ${PN}:${PN} /var/lib/${PN}/work
dosym ../../../var/lib/${PN}/work ${static_dir}/work
keepdir /var/lib/${PN}/data
fowners ${PN}:${PN} /var/lib/${PN}/data
dosym ../../../var/lib/${PN}/data ${static_dir}/data
echo "CONFIG_PROTECT=\"/var/lib/${PN}/data/system.properties\"" > "${T}"/99${PN}
doenvd "${T}"/99${PN}
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
}
|