diff options
author | Rick Farina <zerochaos@gentoo.org> | 2014-06-29 17:38:24 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2014-06-29 17:38:24 +0000 |
commit | 3fca78f7328a7ee735c78c69fb12ce6c29f7275c (patch) | |
tree | 06b056ba1a21caa34c2cd556500f97dc79872fae /app-forensics/rkhunter | |
parent | Add gtk USE flag on clutter, otherwise builds fails with undefined symbols in... (diff) | |
download | gentoo-2-3fca78f7328a7ee735c78c69fb12ce6c29f7275c.tar.gz gentoo-2-3fca78f7328a7ee735c78c69fb12ce6c29f7275c.tar.bz2 gentoo-2-3fca78f7328a7ee735c78c69fb12ce6c29f7275c.zip |
remove old version
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'app-forensics/rkhunter')
-rw-r--r-- | app-forensics/rkhunter/ChangeLog | 5 | ||||
-rw-r--r-- | app-forensics/rkhunter/rkhunter-1.4.0.ebuild | 68 |
2 files changed, 4 insertions, 69 deletions
diff --git a/app-forensics/rkhunter/ChangeLog b/app-forensics/rkhunter/ChangeLog index 802f56a53b01..ba7e93ad756f 100644 --- a/app-forensics/rkhunter/ChangeLog +++ b/app-forensics/rkhunter/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-forensics/rkhunter # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v 1.99 2014/05/27 16:08:08 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v 1.100 2014/06/29 17:38:24 zerochaos Exp $ + + 29 Jun 2014; Rick Farina <zerochaos@gentoo.org> -rkhunter-1.4.0.ebuild: + remove old version 27 May 2014; Rick Farina <zerochaos@gentoo.org> +files/rkhunter-1.4.0.conf.patch, +files/rkhunter-1.4.2.conf.patch, diff --git a/app-forensics/rkhunter/rkhunter-1.4.0.ebuild b/app-forensics/rkhunter/rkhunter-1.4.0.ebuild deleted file mode 100644 index 3d76395220a1..000000000000 --- a/app-forensics/rkhunter/rkhunter-1.4.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild,v 1.7 2014/05/27 16:08:08 zerochaos Exp $ - -EAPI=4 - -inherit eutils bash-completion-r1 - -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[rpc] - virtual/cron - virtual/mailx -" - -S="${WORKDIR}/${P}/files" - -src_prepare() { - epatch "${FILESDIR}/${P}.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 - - exeinto /usr/lib/${PN}/scripts - doexe *.pl - - insinto /var/lib/${PN}/db - doins *.dat - - insinto /var/lib/${PN}/db/i18n - doins i18n/* - - doman ${PN}.8 - dodoc ACKNOWLEDGMENTS CHANGELOG FAQ README - - exeinto /etc/cron.daily - newexe "${FILESDIR}/${PN}-1.3.cron" ${PN} - - newbashcomp "${FILESDIR}/${PN}.bash-completion" ${PN} -} - -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." -} |