diff options
author | Preston A. Elder <prez@gentoo.org> | 2003-11-19 06:44:55 +0000 |
---|---|---|
committer | Preston A. Elder <prez@gentoo.org> | 2003-11-19 06:44:55 +0000 |
commit | 0af6abf69d626f14374c74cf97398d614f9b160e (patch) | |
tree | 7bdf260a5f9e62693beb1a86ca7d70fa7483a6bc /sys-apps/fcron | |
parent | Changed crontab to exec run-crons every minute, only works right with (diff) | |
download | gentoo-2-0af6abf69d626f14374c74cf97398d614f9b160e.tar.gz gentoo-2-0af6abf69d626f14374c74cf97398d614f9b160e.tar.bz2 gentoo-2-0af6abf69d626f14374c74cf97398d614f9b160e.zip |
Changed run-crons to run every minute - requires newer cronbase.
Diffstat (limited to 'sys-apps/fcron')
-rw-r--r-- | sys-apps/fcron/ChangeLog | 11 | ||||
-rw-r--r-- | sys-apps/fcron/fcron-2.0.0-r4.ebuild | 84 | ||||
-rw-r--r-- | sys-apps/fcron/files/crontab-2.0.0-r4 | 19 | ||||
-rw-r--r-- | sys-apps/fcron/files/digest-fcron-2.0.0-r4 | 1 |
4 files changed, 112 insertions, 3 deletions
diff --git a/sys-apps/fcron/ChangeLog b/sys-apps/fcron/ChangeLog index e430e98deac5..b8bcc8d881de 100644 --- a/sys-apps/fcron/ChangeLog +++ b/sys-apps/fcron/ChangeLog @@ -1,12 +1,17 @@ # ChangeLog for sys-apps/fcron # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/ChangeLog,v 1.16 2003/06/28 23:50:48 darkspecter Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/ChangeLog,v 1.17 2003/11/19 06:44:55 prez Exp $ - 29 Jun 2003; Bartosch Pixa <darkspecter@gentoo.org> fcron-2.0.0-r3.ebuild: - set ppc in keywords +*fcron-2.0.0-rr (19 Nov 2003) + + 19 Nov 2003; Preston A. Elder <prez@gentoo.org> fcron-2.0.0-r4.ebuild crontab-2.0.0-r4: + Changed crontab to exec run-crons every minute, requires newer cronbase. *fcron-2.0.0-r3 (02 Mar 2003) + 29 Jun 2003; Bartosch Pixa <darkspecter@gentoo.org> fcron-2.0.0-r3.ebuild: + set ppc in keywords + 14 May 2003; Joshua Kinard <kumba@gentoo.org> fcron-2.0.0-r3.ebuild: Added ~mips to KEYWORDS diff --git a/sys-apps/fcron/fcron-2.0.0-r4.ebuild b/sys-apps/fcron/fcron-2.0.0-r4.ebuild new file mode 100644 index 000000000000..9cbca6415aa7 --- /dev/null +++ b/sys-apps/fcron/fcron-2.0.0-r4.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/fcron-2.0.0-r4.ebuild,v 1.1 2003/11/19 06:44:55 prez Exp $ + +inherit eutils + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="A command scheduler with extended capabilities over cron and anacron" +HOMEPAGE="http://fcron.free.fr/" +SRC_URI="http://fcron.free.fr/${P}.src.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~hppa ~mips" + +DEPEND="virtual/editor" +RDEPEND="!virtual/cron + >=sys-apps/cronbase-0.2.1-r3 + virtual/mta" +PROVIDE="virtual/cron" + +src_unpack() { + unpack ${A} ; cd ${S} + epatch ${FILESDIR}/${P}-gentoo.diff + # fix LIBOBJS vs AC_LIBOBJ problem + mv configure.in configure.in~ + sed <configure.in~ >configure.in -e 's|LIBOBJS|AC_LIBOBJ|g' + autoconf || die "autoconf problem" +} + +src_compile() { + econf \ + --with-username=cron \ + --with-groupname=cron \ + --with-piddir=/var/run \ + --with-etcdir=/etc/fcron \ + --with-spooldir=/var/spool/cron \ + --with-sendmail=/usr/sbin/sendmail \ + --with-editor="${EDITOR}" \ + --with-cflags="${CFLAGS}" || die "bad ./configure" + + emake || die "compile problem" +} + +src_install() { + insinto /usr/sbin + insopts -o root -g root -m 0110 ; doins fcron + insinto /usr/bin + insopts -o cron -g cron -m 6110 ; doins fcrontab + insopts -o root -g cron -m 6110 ; doins fcronsighup + + dosym fcrontab /usr/bin/crontab + + doman doc/*.{1,3,5,8} + + dodoc MANIFEST VERSION doc/{CHANGES,README,LICENSE,FAQ,INSTALL,THANKS} + newdoc ${FILESDIR}/fcron.conf fcron.conf.sample + docinto html ; dohtml doc/*.html + dodoc ${FILESDIR}/crontab + + insinto /etc/fcron + insopts -m 640 -o root -g cron + doins ${FILESDIR}/{fcron.allow,fcron.deny,fcron.conf} + + exeinto /etc/init.d + newexe ${FILESDIR}/fcron.rc6 fcron + + dodir /etc + install -o root -g root -m 0644 ${FILESDIR}/crontab-2.0.0-r4 ${D}/etc/crontab +} + +pkg_postinst() { + # empty dir + install -m0770 -o cron -g cron -d ${ROOT}/var/spool/cron/fcrontabs + + einfo + einfo "To activate /etc/cron.{hourly|daily|weekly|montly} please run: " + einfo "crontab /etc/crontab" + einfo + einfo "!!! That will replace root's current crontab !!!" + einfo +} diff --git a/sys-apps/fcron/files/crontab-2.0.0-r4 b/sys-apps/fcron/files/crontab-2.0.0-r4 new file mode 100644 index 000000000000..83e6d2dba281 --- /dev/null +++ b/sys-apps/fcron/files/crontab-2.0.0-r4 @@ -0,0 +1,19 @@ +# /etc/crontab +# +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/files/crontab-2.0.0-r4,v 1.1 2003/11/19 06:44:55 prez Exp $ + +# fcron || dcron: +# This is NOT the system crontab! fcron and dcron do not support a system crontab. +# to get /etc/cron.{hourly|daily|weekly|montly} working with fcron or dcron do +# crontab /etc/crontab +# as root. +# NOTE: This will REPLACE root's current crontab!! +# 20 Apr 2002; Thilo Bangert <bangert@gentoo.org> + +# check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly + +0 * * * * rm -f /var/spool/cron/lastrun/cron.hourly +0 0 * * * rm -f /var/spool/cron/lastrun/cron.daily +0 0 * * 6 rm -f /var/spool/cron/lastrun/cron.weekly +0 0 1 * * rm -f /var/spool/cron/lastrun/cron.monthly +* * * * * /usr/bin/test -x /usr/sbin/run-crons && /usr/sbin/run-crons diff --git a/sys-apps/fcron/files/digest-fcron-2.0.0-r4 b/sys-apps/fcron/files/digest-fcron-2.0.0-r4 new file mode 100644 index 000000000000..45d732101fce --- /dev/null +++ b/sys-apps/fcron/files/digest-fcron-2.0.0-r4 @@ -0,0 +1 @@ +MD5 b20c6bc5d9435a790e5500ecb7990df8 fcron-2.0.0.src.tar.gz 144069 |