sys-apps/newrelic-sysmond: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Fri, 29 Apr 2016 17:55:36 +0000 (12:55 -0500)
committerAustin English <wizardedit@gentoo.org>
Fri, 29 Apr 2016 19:32:13 +0000 (14:32 -0500)
Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

sys-apps/newrelic-sysmond/files/newrelic-sysmond.rc
sys-apps/newrelic-sysmond/newrelic-sysmond-1.1.2.124-r1.ebuild [new file with mode: 0644]

index 20b7d1d6ca15b2fb79ab6d83bf0549e6c2188981..a270d70d735289f61a8a9fef1c2f6cca43f552f7 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
diff --git a/sys-apps/newrelic-sysmond/newrelic-sysmond-1.1.2.124-r1.ebuild b/sys-apps/newrelic-sysmond/newrelic-sysmond-1.1.2.124-r1.ebuild
new file mode 100644 (file)
index 0000000..06241fb
--- /dev/null
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit user
+
+DESCRIPTION="NewRelic System Monitor"
+HOMEPAGE="http://www.newrelic.com/"
+SRC_URI="http://download.newrelic.com/server_monitor/release/${P}-linux.tar.gz"
+
+LICENSE="newrelic Apache-2.0 MIT ISC openssl GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+RESTRICT="strip"
+
+S="${WORKDIR}/${P}-linux"
+
+pkg_setup() {
+       enewgroup newrelic
+       enewuser newrelic -1 -1 -1 newrelic
+}
+
+src_install() {
+       if [[ "${ARCH}" == "amd64" ]]; then
+               NR_ARCH="x64"
+       elif [[ "${ARCH}" == "x86" ]]; then
+               NR_ARCH="x86"
+       else
+               die "Unsupported architecture (${ARCH})"
+       fi
+
+       dosbin "scripts/nrsysmond-config"
+       newsbin "daemon/nrsysmond.${NR_ARCH}" "nrsysmond"
+       newinitd "${FILESDIR}/newrelic-sysmond.rc" "newrelic-sysmond"
+
+       keepdir "/etc/newrelic"
+       insinto "/etc/newrelic"
+       doins nrsysmond.cfg
+
+       keepdir "/var/run/newrelic"
+       fowners newrelic.newrelic "/var/run/newrelic"
+       fperms 0775 "/var/run/newrelic"
+
+       keepdir "/var/log/newrelic"
+       fowners newrelic.newrelic "/var/log/newrelic"
+       fperms 0775 "/var/log/newrelic"
+
+       dodoc INSTALL.txt LICENSE.txt
+}
+
+pkg_postinst() {
+       elog "Remember to set your license key via:"
+       elog "$ nrsysmond-config --set license_key=\$YOUR_KEY"
+}