app-admin/logsurfer+: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Mon, 25 Apr 2016 23:03:35 +0000 (18:03 -0500)
committerAustin English <wizardedit@gentoo.org>
Mon, 25 Apr 2016 23:09:47 +0000 (18:09 -0500)
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=573846

app-admin/logsurfer+/files/logsurfer-1.8.initd
app-admin/logsurfer+/logsurfer+-1.8-r2.ebuild [new file with mode: 0644]

index b75c26e0464552fe98ea762d6273cbf178b0728b..328c233e165246cd149c0a2f71dc2c826af48c40 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2011 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/app-admin/logsurfer+/logsurfer+-1.8-r2.ebuild b/app-admin/logsurfer+/logsurfer+-1.8-r2.ebuild
new file mode 100644 (file)
index 0000000..eb5a99a
--- /dev/null
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit toolchain-funcs user
+
+MY_P="logsurfer-${PV}"
+DESCRIPTION="Real Time Log Monitoring and Alerting"
+HOMEPAGE="http://www.crypt.gen.nz/logsurfer/"
+SRC_URI="http://kerryt.orcon.net.nz/${MY_P}.tar.gz
+       http://www.crypt.gen.nz/logsurfer/${MY_P}.tar.gz"
+
+LICENSE="freedist GPL-2+"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+RESTRICT="bindist" #444330
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+       econf --with-etcdir=/etc
+}
+
+src_compile() {
+       emake CC="$(tc-getCC)"
+}
+
+src_install() {
+       dobin src/logsurfer
+       doman man/logsurfer.1 man/logsurfer.conf.4
+
+       newinitd "${FILESDIR}"/logsurfer-1.8.initd logsurfer
+       newconfd "${FILESDIR}"/logsurfer.confd logsurfer
+       dodoc ChangeLog README TODO
+}
+
+pkg_postinst() {
+       enewuser logsurfer -1 -1 -1 daemon
+}