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, 0 insertions, 60 deletions
diff --git a/sys-apps/logwatch/logwatch-7.0.ebuild b/sys-apps/logwatch/logwatch-7.0.ebuild deleted file mode 100644 index edc5ce19aafc..000000000000 --- a/sys-apps/logwatch/logwatch-7.0.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# 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 -} |