diff options
Diffstat (limited to 'sys-apps/logwatch/logwatch-4.3.2.ebuild')
-rw-r--r-- | sys-apps/logwatch/logwatch-4.3.2.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/sys-apps/logwatch/logwatch-4.3.2.ebuild b/sys-apps/logwatch/logwatch-4.3.2.ebuild deleted file mode 100644 index 6761682aee16..000000000000 --- a/sys-apps/logwatch/logwatch-4.3.2.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-4.3.2.ebuild,v 1.9 2005/01/11 14:01:01 ticho 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="x86 ~amd64" -IUSE="" - -RDEPEND="virtual/libc - virtual/cron - virtual/mta - dev-lang/perl - virtual/mailx" -DEPEND="" - -src_install() { - 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 - if [ $(ls $i | wc -l) -ne 0 ] ; then - exeinto /etc/log.d/$i - doexe $i/* - fi - done - - 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/* - - doman logwatch.8 - dodoc License project/CHANGES project/TODO README HOWTO-Make-Filter -} - -pkg_postinst() { - einfo - einfo "you have to manually add ${PN} to cron..." - einfo "0 0 * * * /usr/sbin/logwatch.pl 2>&1 > /dev/null" - einfo -} |