diff options
Diffstat (limited to 'sys-apps/logwatch/logwatch-7.0.ebuild')
-rw-r--r-- | sys-apps/logwatch/logwatch-7.0.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/sys-apps/logwatch/logwatch-7.0.ebuild b/sys-apps/logwatch/logwatch-7.0.ebuild new file mode 100644 index 000000000000..edc5ce19aafc --- /dev/null +++ b/sys-apps/logwatch/logwatch-7.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/logwatch/logwatch-7.0.ebuild,v 1.1 2005/11/04 03:36:21 vapier Exp $ + +DESCRIPTION="Analyzes and Reports on system logs" +HOMEPAGE="http://www.logwatch.org/" +SRC_URI="ftp://ftp.kaybee.org/pub/linux/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="virtual/cron + virtual/mta + dev-lang/perl + dev-perl/Tie-IxHash + dev-perl/Date-Calc + virtual/mailx" +DEPEND="" + +src_install() { + dodir /etc/log.d/lib + dodir /etc/log.d/conf/logfiles + dodir /etc/log.d/conf/services + dodir /etc/log.d/scripts/services + dodir /etc/log.d/scripts/shared + + newsbin scripts/logwatch.pl logwatch.pl + + for i in scripts/logfiles/* ; do + exeinto /etc/log.d/$i + doexe $i/* || die "doexe $i failed" + done + + exeinto /etc/log.d/lib + doexe lib/*.pm + + exeinto /etc/log.d/scripts/services + doexe scripts/services/* + + exeinto /etc/log.d/scripts/shared + doexe scripts/shared/* + + insinto /etc/log.d/conf + doins conf/logwatch.conf + + insinto /etc/log.d/conf/logfiles + doins conf/logfiles/* + + insinto /etc/log.d/conf/services + doins conf/services/* + + # Make sure logwatch is run before anything else #100243 + exeinto /etc/cron.daily + newexe "${FILESDIR}"/logwatch 00-logwatch + + doman logwatch.8 + dodoc project/CHANGES README HOWTO-Make-Filter +} |