blob: f13b43506f12bffce0e4ec33f84edb255ff86b9e (
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
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/logwatch/logwatch-6.1.2.ebuild,v 1.3 2005/10/23 11:57:56 ferdy Exp $
inherit eutils
DESCRIPTION="Analyzes and Reports on system logs"
HOMEPAGE="http://www.logwatch.org/"
SRC_URI="ftp://ftp.kaybee.org/pub/linux/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="virtual/cron
virtual/mta
dev-lang/perl
dev-perl/Tie-IxHash
dev-perl/Date-Calc
virtual/mailx"
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-emerge-applydate.patch
}
src_install() {
dodir /etc/log.d/lib
dodir /etc/log.d/conf/logfiles
dodir /etc/log.d/conf/services
dodir /etc/log.d/scripts/services
dodir /etc/log.d/scripts/shared
newsbin scripts/logwatch.pl logwatch.pl
for i in scripts/logfiles/* ; do
exeinto /etc/log.d/$i
doexe $i/* || die "doexe $i failed"
done
exeinto /etc/log.d/lib
doexe lib/*.pm
exeinto /etc/log.d/scripts/services
doexe scripts/services/*
exeinto /etc/log.d/scripts/shared
doexe scripts/shared/*
insinto /etc/log.d/conf
doins conf/logwatch.conf
insinto /etc/log.d/conf/logfiles
doins conf/logfiles/*
insinto /etc/log.d/conf/services
doins conf/services/*
# Make sure logwatch is run before anything else #100243
exeinto /etc/cron.daily
newexe "${FILESDIR}"/logwatch 00-logwatch
doman logwatch.8
dodoc License project/CHANGES README HOWTO-Make-Filter
}
|