blob: 2519303b0d627b26dadc012def9fb881261bb70e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.3.ebuild,v 1.3 2005/01/01 11:31:13 eradicator Exp $
inherit eutils
DESCRIPTION="Log parsing and notification program"
HOMEPAGE="http://www.gentoo.org/~lcars/tenshi"
SRC_URI="http://www.gentoo.org/~lcars/tenshi/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE=""
RDEPEND="dev-lang/perl
sys-apps/coreutils"
pkg_preinst() {
enewgroup tenshi
enewuser tenshi -1 /bin/false /var/lib/tenshi tenshi
fowners tenshi:root /etc/tenshi/tenshi.conf
fowners tenshi:root /var/lib/tenshi
}
src_install() {
sed -i -e "s:-o tenshi::" Makefile
emake DESTDIR=${D} install
doman tenshi.8
exeinto /etc/init.d
newexe tenshi.gentoo-init tenshi
keepdir /var/lib/tenshi
}
pkg_postinst() {
einfo
einfo "This app was formerly known as wasabi. The name was changed"
einfo "due to trademark issues. If you are upgrading from an old"
einfo "wasabi version please consider removing the 'wasabi' user"
einfo "which was created by the old ebuilds."
einfo
einfo "Please also be aware that if upgrading from versions <=0.2"
einfo "the configuration syntax for time intervals has changed to"
einfo "crontab style entries, old configurations won't work. Please"
einfo "check the manpage for full details."
einfo
}
|