blob: b26605acbb005a1acc7eee27c845f2edba52ac6c (
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
58
59
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild,v 1.5 2009/02/01 12:16:00 maekke Exp $
inherit eutils
DESCRIPTION="Log parsing and notification program"
HOMEPAGE="http://dev.inversepath.com/trac/tenshi"
SRC_URI="http://dev.inversepath.com/tenshi/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc 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_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-create-mandir.patch"
# Fix for bug #218042
epatch "${FILESDIR}/${PN}-openrc-init.patch"
# Fix for bug #217000
epatch "${FILESDIR}/${PN}-remove-timezone-cache.patch"
# Fixes for bug #243082
epatch "${FILESDIR}/${PN}-0.10-solo-queue-escalation.patch"
epatch "${FILESDIR}/${PN}-0.10-warn-logfile.patch"
# Fix for bug #241254
sed -i 's:^docdir =.*:docdir = /usr/share/doc/${PF}:' \
Makefile || die "docdir substitution failed"
}
src_install() {
emake DESTDIR="${D}" install
fowners tenshi:root /etc/tenshi/tenshi.conf
dodir /var/lib/tenshi
fowners tenshi:root /var/lib/tenshi
doman tenshi.8
newinitd tenshi.gentoo-init tenshi
keepdir /var/lib/tenshi
}
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."
}
|