commit:     ad84575dc52e9b5e0c5e4bf93eaa055745767fdf
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 14 18:57:18 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Apr 14 18:58:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad84575d

app-admin/logcheck: Handle /var/log/messages (#531524)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-admin/logcheck/logcheck-1.3.18-r1.ebuild | 62 ++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/app-admin/logcheck/logcheck-1.3.18-r1.ebuild 
b/app-admin/logcheck/logcheck-1.3.18-r1.ebuild
new file mode 100644
index 00000000000..ef2a5825851
--- /dev/null
+++ b/app-admin/logcheck/logcheck-1.3.18-r1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit readme.gentoo-r1 user
+
+DESCRIPTION="Mails anomalies in the system logfiles to the administrator"
+HOMEPAGE="http://packages.debian.org/sid/logcheck";
+SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+       !app-admin/logsentry
+       app-misc/lockfile-progs
+       dev-lang/perl
+       dev-perl/mime-construct
+       virtual/mailx
+"
+
+DOC_CONTENTS="
+       Please read the guide at https://wiki.gentoo.org/wiki/Logcheck
+       for installation instructions.
+"
+
+pkg_setup() {
+       enewgroup logcheck
+       enewuser logcheck -1 -1 -1 logcheck
+}
+
+src_prepare() {
+       default
+       # Add /var/log/messages support, bug #531524
+       echo "/var/log/messages" >> etc/logcheck.logfiles
+}
+
+src_install() {
+       default
+
+       # Do not install /var/lock, bug #449968 . Use rmdir to make sure
+       # the directories removed are empty.
+       rmdir "${D}/var/lock/logcheck" || die
+       rmdir "${D}/var/lock" || die
+
+       keepdir /var/lib/logcheck
+
+       readme.gentoo_create_doc
+       dodoc AUTHORS CHANGES CREDITS TODO docs/README.*
+       doman docs/logtail.8 docs/logtail2.8
+
+       exeinto /etc/cron.hourly
+       doexe "${FILESDIR}/${PN}.cron"
+}
+
+pkg_postinst() {
+       chown -R logcheck:logcheck /etc/logcheck /var/lib/logcheck || die
+       readme.gentoo_print_elog
+}

Reply via email to