diff options
Diffstat (limited to 'app-metrics/queuemetrics/queuemetrics-19.04.3-r1.ebuild')
-rw-r--r-- | app-metrics/queuemetrics/queuemetrics-19.04.3-r1.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/app-metrics/queuemetrics/queuemetrics-19.04.3-r1.ebuild b/app-metrics/queuemetrics/queuemetrics-19.04.3-r1.ebuild deleted file mode 100644 index e869a5b..0000000 --- a/app-metrics/queuemetrics/queuemetrics-19.04.3-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# 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.42" - -DESCRIPTION="A monitoring and reporting suite for asterisk based PBX" -HOMEPAGE="https://www.queuemetrics.com" -LICENSE="all-rights-reserved" -SRC_URI="https://archive.apache.org/dist/tomcat/tomcat-8/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz \ - https://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} - - if [ "$( cat /opt/queuemetrics/tomcat/VERSION )" != "${TOMCAT_VERSION}" ] - then - ewarn - ewarn - ewarn "This ebuild will install a newer version of apache tomcat." - ewarn "You need to restart udev as soon as possible to make the upgrade go into effect." - ewarn "For sys-apps/openrc users it is:" - ewarn "# /etc/init.d/queuemetrics restart" - ewarn - ewarn - fi -} - -src_install() { - dodir /opt/${PN}/tomcat/{logs,temp,webapps,work} - insinto /opt/${PN}/tomcat - doins -r apache-tomcat-${TOMCAT_VERSION}/{bin,conf,lib} - - cp ${FILESDIR}/server.xml "${D}"/opt/${PN}/tomcat/conf/ - - 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}" - - echo "${TOMCAT_VERSION}" > "${D}"/opt/${PN}/tomcat/VERSION -} |