# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.2.9.ebuild,v 1.7 2007/06/29 17:21:40 armin76 Exp $ 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/rkhunter/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 mips ppc sparc x86" IUSE="" RDEPEND="virtual/mta app-shells/bash dev-lang/perl sys-process/lsof" S="${WORKDIR}/${P}/files" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-1.3.2-create-tmpdir.diff # epatch "${FILESDIR}"/${PN}-1.2.9-ppc64.patch } src_install() { insinto /usr/lib/rkhunter/db doins *.dat || die "failed to install dat files" cd "${S}/i18n" insinto /usr/lib/rkhunter/db/i18n doins * || die "failed to install i18n files" cd "${S}" exeinto /usr/lib/rkhunter/scripts doexe *.pl check_update.sh || die "failed to install scripts" dobin rkhunter || die "failed to install rkhunter script" insinto /etc doins rkhunter.conf || die "failed to install rkhunter.conf" dosed 's:^#DBDIR=/var/\(.*\)$:DBDIR=/usr/\1\nINSTALLDIR=/usr:' \ /etc/rkhunter.conf || die "sed rkhunter.conf failed" dosed 's:^#SCRIPTDIR=\(.*\)/local/\(.*\)$:SCRIPTDIR=\1/\2:' \ /etc/rkhunter.conf || die "sed rkhunter.conf failed" doman rkhunter.8 || die "doman failed" dodoc CHANGELOG LICENSE README WISHLIST || die "dodoc failed" exeinto /etc/cron.daily newexe "${FILESDIR}"/rkhunter.cron rkhunter || \ die "failed to install cron script" dobashcompletion ${FILESDIR}/${PN}-1.3.2.bash-completion } pkg_postinst() { echo 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." echo bash-completion_pkg_postinst } pkg_prerm() { rm -rf /usr/lib/rkhunter/tmp }