blob: 106d0813dc8fcd763d65e836dce46711171305eb (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/wasabi/wasabi-0.1-r1.ebuild,v 1.2 2004/06/18 20:19:16 dholm Exp $
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"
IUSE=""
RDEPEND="dev-perl/Storable
dev-perl/BerkeleyDB
dev-perl/File-Tail"
src_install() {
doman wasabi.8
dodoc CREDITS Changelog README
dosbin wasabi
exeinto /etc/init.d
newexe ${FILESDIR}/wasabi.init wasabi
dodir /etc/wasabi
insinto /etc/wasabi ; doins wasabi.conf
}
|