diff options
author | Friedrich Oslage <bluebird@gentoo.org> | 2009-03-07 11:11:54 +0000 |
---|---|---|
committer | Friedrich Oslage <bluebird@gentoo.org> | 2009-03-07 11:11:54 +0000 |
commit | 9ad86b4cc80bfa50071ce146d10ed9d7aeb901e1 (patch) | |
tree | 6f802884db12f879019d6894697cd4e4ae39bcb0 /app-forensics | |
parent | x86 stable, bug 253551 (diff) | |
download | gentoo-2-9ad86b4cc80bfa50071ce146d10ed9d7aeb901e1.tar.gz gentoo-2-9ad86b4cc80bfa50071ce146d10ed9d7aeb901e1.tar.bz2 gentoo-2-9ad86b4cc80bfa50071ce146d10ed9d7aeb901e1.zip |
Version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'app-forensics')
-rw-r--r-- | app-forensics/lynis/ChangeLog | 9 | ||||
-rw-r--r-- | app-forensics/lynis/lynis-1.2.3.ebuild | 44 |
2 files changed, 51 insertions, 2 deletions
diff --git a/app-forensics/lynis/ChangeLog b/app-forensics/lynis/ChangeLog index 47cc0ab2b27d..b86d5b8c92da 100644 --- a/app-forensics/lynis/ChangeLog +++ b/app-forensics/lynis/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-forensics/lynis -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.4 2008/10/11 11:18:27 bluebird Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.5 2009/03/07 11:11:54 bluebird Exp $ + +*lynis-1.2.3 (07 Mar 2009) + + 07 Mar 2009; Friedrich Oslage <bluebird@gentoo.org> +lynis-1.2.3.ebuild: + Version bump 11 Oct 2008; Friedrich Oslage <bluebird@gentoo.org> lynis-1.2.1.ebuild: Stable on sparc, bug #240102 diff --git a/app-forensics/lynis/lynis-1.2.3.ebuild b/app-forensics/lynis/lynis-1.2.3.ebuild new file mode 100644 index 000000000000..bd1f326a58ac --- /dev/null +++ b/app-forensics/lynis/lynis-1.2.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.2.3.ebuild,v 1.1 2009/03/07 11:11:54 bluebird Exp $ + +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 ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="app-shells/bash" + +src_install() { + insinto /usr/share/lynis/db + doins db/*.db || die "failed to install lynis db files" + + insinto /usr/share/lynis/include + doins include/* || die "failed to install lynis includes" + + insinto /usr/share/lynis/plugins + doins plugins/* || die "failed to install lynis plugins" + + dobin lynis || die "failed to install lynis script" + + insinto /etc/lynis + doins default.prf || die "failed to install default.prf" + keepdir /etc/lynis + + doman lynis.8 || die "doman failed" + dodoc CHANGELOG README INSTALL FAQ TODO || die "dodoc failed" + + exeinto /etc/cron.daily + newexe "${FILESDIR}"/lynis.cron lynis || die "failed to install cron script" +} + +pkg_postinst() { + echo + elog "A cron script has been installed to ${ROOT}etc/cron.daily/lynis." + echo +} |