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