summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-14 20:58:08 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-14 20:58:24 +0200
commit4427b99fe35e5d17a41e4a50d9a43a59832258ac (patch)
tree30fd53ccd441d1aa8978dc124985a250d341245d /app-admin/logcheck/logcheck-1.3.18.ebuild
parentapp-admin/logcheck: Use https (diff)
downloadgentoo-4427b99fe35e5d17a41e4a50d9a43a59832258ac.tar.gz
gentoo-4427b99fe35e5d17a41e4a50d9a43a59832258ac.tar.bz2
gentoo-4427b99fe35e5d17a41e4a50d9a43a59832258ac.zip
app-admin/logcheck: Drop old
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'app-admin/logcheck/logcheck-1.3.18.ebuild')
-rw-r--r--app-admin/logcheck/logcheck-1.3.18.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/app-admin/logcheck/logcheck-1.3.18.ebuild b/app-admin/logcheck/logcheck-1.3.18.ebuild
deleted file mode 100644
index 05809634d694..000000000000
--- a/app-admin/logcheck/logcheck-1.3.18.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit 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="!app-admin/logsentry
- app-misc/lockfile-progs
- dev-lang/perl
- dev-perl/mime-construct
- virtual/mailx
- ${DEPEND}"
-
-pkg_setup() {
- enewgroup logcheck
- enewuser logcheck -1 -1 -1 logcheck
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- # 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
- 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
-
- elog "Please read the guide at https://wiki.gentoo.org/wiki/Logcheck"
- elog "for installation instructions."
-}