Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/rkhunter/
Date: Sat, 02 Jan 2016 21:12:09
Message-Id: 1451769092.4337a53de4e2e0ca9600b5f6c1f95b5fd3161580.mrueg@gentoo
1 commit: 4337a53de4e2e0ca9600b5f6c1f95b5fd3161580
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 21:11:32 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 21:11:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4337a53d
7
8 app-forensics/rkhunter: Remove old
9
10 Package-Manager: portage-2.2.26
11
12 app-forensics/rkhunter/Manifest | 1 -
13 app-forensics/rkhunter/rkhunter-1.4.0.ebuild | 68 ----------------------------
14 2 files changed, 69 deletions(-)
15
16 diff --git a/app-forensics/rkhunter/Manifest b/app-forensics/rkhunter/Manifest
17 index 614e878..cf1cea2 100644
18 --- a/app-forensics/rkhunter/Manifest
19 +++ b/app-forensics/rkhunter/Manifest
20 @@ -1,2 +1 @@
21 -DIST rkhunter-1.4.0.tar.gz 244211 SHA256 8a03d6add50663531994d55aff058eced74c64df948b88176621cd761b68ccf9 SHA512 597e8b2e3f75cd1cb57dd3e33df004265f03ca1503310f984211612da43a160e5d3b50626b4918bd38bf0d239fe2e4a45e55a96212c5a3b5a5645e77e030b60a WHIRLPOOL 45c023b625c7c1664a9f99438b5bebe5ed70265346f122b9d71f91611439d77a2bda01c137698898314183458c4467c66f73bb703b83fbaae2ffe65ded3307ad
22 DIST rkhunter-1.4.2.tar.gz 277707 SHA256 789cc84a21faf669da81e648eead2e62654cfbe0b2d927119d8b1e55b22b65c3 SHA512 a4e45caaaf5b8262619ebb890784c75c4e30db4c6c0eba305f86d419142b4796c95bc55fe8846dce8d58bc7636bdb365a4a8c41707f64d4d81373687c5a3b0d4 WHIRLPOOL 911ed8e37e112516adba3afb63e3d4862d061ea35cd4b8becea455922d6b2a744f4b8e7cf92685cff29c3192c594dfc58ba3c194f371dd4d95530bd4c09c5d84
23
24 diff --git a/app-forensics/rkhunter/rkhunter-1.4.0.ebuild b/app-forensics/rkhunter/rkhunter-1.4.0.ebuild
25 deleted file mode 100644
26 index d8a37b3..0000000
27 --- a/app-forensics/rkhunter/rkhunter-1.4.0.ebuild
28 +++ /dev/null
29 @@ -1,68 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=4
35 -
36 -inherit eutils bash-completion-r1
37 -
38 -DESCRIPTION="Rootkit Hunter scans for known and unknown rootkits, backdoors, and sniffers"
39 -HOMEPAGE="http://rkhunter.sf.net/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~mips ppc x86"
45 -IUSE=""
46 -
47 -RDEPEND="
48 - app-shells/bash
49 - dev-lang/perl
50 - sys-process/lsof[rpc]
51 - virtual/cron
52 - virtual/mailx
53 -"
54 -
55 -S="${WORKDIR}/${P}/files"
56 -
57 -src_prepare() {
58 - epatch "${FILESDIR}/${P}.conf.patch"
59 -}
60 -
61 -src_install() {
62 - # rkhunter requires to be root
63 - dosbin ${PN}
64 -
65 - # rkhunter doesn't create it by itself
66 - dodir /var/lib/${PN}/tmp
67 -
68 - insinto /etc
69 - doins ${PN}.conf
70 -
71 - exeinto /usr/lib/${PN}/scripts
72 - doexe *.pl
73 -
74 - insinto /var/lib/${PN}/db
75 - doins *.dat
76 -
77 - insinto /var/lib/${PN}/db/i18n
78 - doins i18n/*
79 -
80 - doman ${PN}.8
81 - dodoc ACKNOWLEDGMENTS CHANGELOG FAQ README
82 -
83 - exeinto /etc/cron.daily
84 - newexe "${FILESDIR}/${PN}-1.3.cron" ${PN}
85 -
86 - newbashcomp "${FILESDIR}/${PN}.bash-completion" ${PN}
87 -}
88 -
89 -pkg_postinst() {
90 - elog "A cron script has been installed to /etc/cron.daily/rkhunter."
91 - elog "To enable it, edit /etc/cron.daily/rkhunter and follow the"
92 - elog "directions."
93 - elog "If you want ${PN} to send mail, you will need to install"
94 - elog "virtual/mailx or alter the EMAIL_CMD variable in the"
95 - elog "cron script and possibly the MAIL_CMD variable in the"
96 - elog "${PN}.conf file to use another mail client."
97 -}