You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/logcheck/logcheck-1.3.13.ebuild

48 lines
1.3 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/logcheck/logcheck-1.3.13.ebuild,v 1.4 2011/12/18 17:49:04 armin76 Exp $
inherit eutils
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.gz"
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}"
S="${WORKDIR}/${PN}"
pkg_setup() {
enewgroup logcheck
enewuser logcheck -1 -1 -1 logcheck
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
keepdir /var/{lib,lock}/logcheck
dodoc AUTHORS CHANGES CREDITS TODO docs/README.* || die "dodoc failed"
doman docs/logtail.8 docs/logtail2.8 || die "doman failed"
exeinto /etc/cron.hourly
doexe "${FILESDIR}/${PN}.cron" || die "doexe failed"
}
pkg_postinst() {
chown -R logcheck:logcheck /etc/logcheck /var/{lib,lock}/logcheck \
|| die "chown failed"
elog "Please read the guide ad http://www.gentoo.org/doc/en/logcheck.xml"
elog "for installation instructions."
}