summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-05-14 01:30:23 +0100
committerSam James <sam@gentoo.org>2021-05-14 01:35:46 +0100
commit9d63edc14883e26a881f75154912f958285a0915 (patch)
treeb7fae2d105b1ac1bed6bafc838821234ee386b24
parentapp-admin/tenshi: Stabilize 0.17-r1 ppc, #790044 (diff)
downloadgentoo-9d63edc1.tar.gz
gentoo-9d63edc1.tar.bz2
gentoo-9d63edc1.zip
app-admin/tenshi: drop 0.17
Closes: https://bugs.gentoo.org/790044 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--app-admin/tenshi/tenshi-0.17.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/app-admin/tenshi/tenshi-0.17.ebuild b/app-admin/tenshi/tenshi-0.17.ebuild
deleted file mode 100644
index 8ef916bfe1ee..000000000000
--- a/app-admin/tenshi/tenshi-0.17.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit user
-
-DESCRIPTION="Log parsing and notification program"
-HOMEPAGE="https://inversepath.com/tenshi.html https://github.com/inversepath/tenshi"
-SRC_URI="https://github.com/inversepath/${PN}/archive/${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="dev-lang/perl
- dev-perl/IO-BufferedSelect
- sys-apps/coreutils"
-
-pkg_setup() {
- enewgroup tenshi
- enewuser tenshi -1 -1 /var/lib/tenshi tenshi
-}
-
-src_prepare() {
- default
- # Fix for bug #241254
- sed -i 's:^docdir =.*:docdir = /usr/share/doc/${PF}:' \
- Makefile || die "docdir substitution failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- doman tenshi.8
- newinitd tenshi.openrc-init tenshi
-
- # We don't need to install LICENSE files.
- rm "${D}/usr/share/doc/${PF}/LICENSE" || die 'failed to remove LICENSE'
-}
-
-pkg_postinst() {
- ewarn "The sample config installed to ${ROOT}etc/tenshi/tenshi.conf"
- ewarn "monitors /var/log/messages which, by default, can not be read"
- ewarn "by the tenshi user. Make sure that the tenshi user has read"
- ewarn "permission on all the files that you want tenshi to monitor."
-}