blob: e325571bc6285c9aba73dac1b98f84569b340a51 (
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
69
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.3.6.ebuild,v 1.4 2011/10/08 18:58:52 armin76 Exp $
EAPI=2
inherit eutils bash-completion
DESCRIPTION="Rootkit Hunter scans for known and unknown rootkits, backdoors, and sniffers."
HOMEPAGE="http://rkhunter.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~x86"
IUSE=""
RDEPEND="
app-shells/bash
dev-lang/perl
sys-process/lsof
virtual/cron
"
S="${WORKDIR}/${P}/files"
src_prepare() {
epatch "${FILESDIR}/${PN}.conf.patch"
}
src_install() {
# rkhunter requires to be root
dosbin ${PN}
# rkhunter doesn't create it by itself
dodir /var/lib/${PN}/tmp
insinto /etc
doins ${PN}.conf || die "failed to install ${PN}.conf"
exeinto /usr/lib/${PN}/scripts
doexe *.pl || die "failed to install scripts"
insinto /var/lib/${PN}/db
doins *.dat || die "failed to install dat files"
insinto /var/lib/${PN}/db/i18n
doins i18n/*
doman ${PN}.8 || die "doman failed"
dodoc ACKNOWLEDGMENTS CHANGELOG FAQ README || die "dodoc failed"
exeinto /etc/cron.daily
newexe "${FILESDIR}/${PN}-1.3.cron" ${PN} || \
die "failed to install cron script"
dobashcompletion "${FILESDIR}/${PN}.bash-completion"
}
pkg_postinst() {
elog "A cron script has been installed to /etc/cron.daily/rkhunter."
elog "To enable it, edit /etc/cron.daily/rkhunter and follow the"
elog "directions."
elog "If you want ${PN} to send mail, you will need to install"
elog "virtual/mailx or alter the EMAIL_CMD variable in the"
elog "cron script and possibly the MAIL_CMD variable in the"
elog "${PN}.conf file to use another mail client."
bash-completion_pkg_postinst
}
|