Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/lynis: lynis-1.2.6.ebuild ChangeLog
Date: Tue, 02 Jun 2009 18:19:40
Message-Id: E1MBYaG-0000QV-UX@stork.gentoo.org
1 idl0r 09/06/02 18:19:36
2
3 Modified: ChangeLog
4 Added: lynis-1.2.6.ebuild
5 Log:
6 Version bump, bug 272253, thanks to Zak Kipling <zak.kipling@××××××.net>.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 app-forensics/lynis/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/lynis/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/lynis/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/lynis/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 30 Apr 2009 17:50:32 -0000 1.9
23 +++ ChangeLog 2 Jun 2009 18:19:36 -0000 1.10
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-forensics/lynis
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.9 2009/04/30 17:50:32 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.10 2009/06/02 18:19:36 idl0r Exp $
29 +
30 +*lynis-1.2.6 (02 Jun 2009)
31 +
32 + 02 Jun 2009; Christian Ruppert <idl0r@g.o> +lynis-1.2.6.ebuild:
33 + Version bump, bug 272253, thanks to Zak Kipling <zak.kipling@××××××.net>.
34
35 30 Apr 2009; Patrick Lauer <patrick@g.o> -lynis-1.2.3-r1.ebuild:
36 Remove old
37
38
39
40 1.1 app-forensics/lynis/lynis-1.2.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/lynis/lynis-1.2.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/lynis/lynis-1.2.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lynis-1.2.6.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.2.6.ebuild,v 1.1 2009/06/02 18:19:36 idl0r Exp $
50
51 DESCRIPTION="Security and system auditing tool"
52 HOMEPAGE="http://www.rootkit.nl/projects/lynis.html"
53 SRC_URI="http://www.rootkit.nl/files/${P}.tar.gz"
54
55 LICENSE="GPL-3"
56 SLOT="0"
57 KEYWORDS="~amd64 ~sparc ~x86"
58 IUSE=""
59
60 DEPEND=""
61 RDEPEND="app-shells/bash"
62
63 src_install() {
64 insinto /usr/share/${PN}
65 doins -r db/ include/ plugins/ || die "failed to install lynis base files"
66
67 dosbin lynis || die "dosbin failed"
68
69 insinto /etc/${PN}
70 doins default.prf || die "failed to install default.prf"
71
72 doman lynis.8 || die "doman failed"
73 dodoc CHANGELOG FAQ README dev/TODO || die "dodoc failed"
74
75 # Remove the old one during the next stabilize progress
76 exeinto /etc/cron.daily
77 newexe "${FILESDIR}"/lynis.cron-new lynis || die "failed to install cron script"
78 }
79
80 pkg_postinst() {
81 einfo
82 einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
83 einfo
84 }