blob: 2f07ce679ae0d32318154a1c449b8bdc60f176ce (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# DISCLAIMER:
# This ebuild does NOT follow the Gentoo QA Rules, instead it follows the upstream way to install and run the application
EAPI=7
inherit user
TOMCAT_VERSION="8.5.40"
DESCRIPTION="A monitoring and reporting suite for asterisk based PBX"
HOMEPAGE="https://www.queuemetrics.com"
LICENSE="all-rights-reserved"
SRC_URI="http://downloads.loway.ch/qm/tomcat/apache-tomcat-${TOMCAT_VERSION}.tar.gz http://downloads.loway.ch/qm/QueueMetrics-${PV}.tar.gz"
RESTRICT="mirror"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+mysql uniloader"
RDEPEND="virtual/jdk:1.8"
PDEPEND="mysql? ( virtual/mysql[server] )
uniloader? ( app-metrics/uniloader )"
S="${WORKDIR}"
pkg_setup() {
enewgroup ${PN}
enewuser ${PN} -1 -1 -1 ${PN}
}
src_prepare() {
ewarn
ewarn
ewarn "This ebuild will restart your queuemetrics instance"
ewarn
ewarn
sleep 5
default
}
src_install() {
dodir /opt/${PN}/tomcat/{logs,temp,webapps,work}
insinto /opt/${PN}/tomcat
doins -r apache-tomcat-${TOMCAT_VERSION}/{bin,conf,lib}
fowners -R ${PN}:${PN} /opt/${PN}
fperms 0750 /opt/${PN}
cp -r ${P} "${D}"/opt/${PN}/tomcat/webapps/${PN}
newconfd "${FILESDIR}/${PN}.confd" ${PN}
newinitd "${FILESDIR}/${PN}.initd" ${PN}
doenvd "${FILESDIR}/25${PN}"
}
|