blob: fe5dd89cd65d83b02fd848616b5c590327b58ccd (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $
DESCRIPTION="Log parsing and notification program"
HOMEPAGE="http://www.gentoo.org/~lcars/wasabi"
SRC_URI="http://www.gentoo.org/~lcars/wasabi/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE=""
RDEPEND="sys-apps/coreutils"
pkg_preinst() {
enewgroup wasabi
enewuser wasabi -1 /bin/false /var/lib/wasabi wasabi
}
src_install() {
emake DESTDIR=${D} install
doman wasabi.8
exeinto /etc/init.d
newexe wasabi.gentoo-init wasabi
fowners wasabi:root /etc/wasabi/wasabi.conf
keepdir /var/lib/wasabi
}
|