diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2013-10-03 13:41:48 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2013-10-03 13:41:48 +0000 |
commit | ae3520820b26c710fe175ede6c47473730a4f945 (patch) | |
tree | 48a369b29714850869acf6308bfdcb724bc2ca74 /app-forensics | |
parent | Punt neotools. Oops, forgot to remote last night it seems. (diff) | |
download | gentoo-2-ae3520820b26c710fe175ede6c47473730a4f945.tar.gz gentoo-2-ae3520820b26c710fe175ede6c47473730a4f945.tar.bz2 gentoo-2-ae3520820b26c710fe175ede6c47473730a4f945.zip |
Version bump
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key B427ABC8)
Diffstat (limited to 'app-forensics')
-rw-r--r-- | app-forensics/lynis/ChangeLog | 9 | ||||
-rw-r--r-- | app-forensics/lynis/lynis-1.3.1.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/app-forensics/lynis/ChangeLog b/app-forensics/lynis/ChangeLog index 4c2e3a0bc59e..db1951fb7532 100644 --- a/app-forensics/lynis/ChangeLog +++ b/app-forensics/lynis/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-forensics/lynis -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.24 2012/10/30 20:15:13 idl0r Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.25 2013/10/03 13:41:48 idl0r Exp $ + +*lynis-1.3.1 (03 Oct 2013) + + 03 Oct 2013; Christian Ruppert <idl0r@gentoo.org> +lynis-1.3.1.ebuild: + Version bump 30 Oct 2012; Christian Ruppert <idl0r@gentoo.org> -lynis-1.2.9.ebuild, -files/lynis.cron: diff --git a/app-forensics/lynis/lynis-1.3.1.ebuild b/app-forensics/lynis/lynis-1.3.1.ebuild new file mode 100644 index 000000000000..af044a38086c --- /dev/null +++ b/app-forensics/lynis/lynis-1.3.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.3.1.ebuild,v 1.1 2013/10/03 13:41:48 idl0r Exp $ + +EAPI="5" + +DESCRIPTION="Security and system auditing tool" +HOMEPAGE="http://www.rootkit.nl/projects/lynis.html" +SRC_URI="http://www.rootkit.nl/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="app-shells/bash" + +src_install() { + insinto /usr/share/${PN} + doins -r db/ include/ plugins/ || die "failed to install lynis base files" + + dosbin lynis + + insinto /etc/${PN} + doins default.prf + + doman lynis.8 + dodoc CHANGELOG FAQ README dev/TODO + + # Remove the old one during the next stabilize progress + exeinto /etc/cron.daily + newexe "${FILESDIR}"/lynis.cron-new lynis +} + +pkg_postinst() { + einfo + einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis." + einfo +} |