diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-02 08:51:34 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-02 08:51:34 +0000 |
commit | 6b4b1e01dc9b60fca955a6528cf7be4f91fd6047 (patch) | |
tree | 8c700450851a94bcef43869d26f3e029d4b875f7 /sys-apps/fcron | |
parent | whoops, another small fix for hotplug usb stuff. (diff) | |
download | gentoo-2-6b4b1e01dc9b60fca955a6528cf7be4f91fd6047.tar.gz gentoo-2-6b4b1e01dc9b60fca955a6528cf7be4f91fd6047.tar.bz2 gentoo-2-6b4b1e01dc9b60fca955a6528cf7be4f91fd6047.zip |
use /usr/bin/vim instead of /usr/bin/nano
Diffstat (limited to 'sys-apps/fcron')
-rw-r--r-- | sys-apps/fcron/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/fcron/fcron-2.0.0-r3.ebuild | 82 | ||||
-rw-r--r-- | sys-apps/fcron/files/digest-fcron-2.0.0-r3 | 1 |
3 files changed, 90 insertions, 1 deletions
diff --git a/sys-apps/fcron/ChangeLog b/sys-apps/fcron/ChangeLog index d9df6a36bb9d..f664b7b59ef8 100644 --- a/sys-apps/fcron/ChangeLog +++ b/sys-apps/fcron/ChangeLog @@ -1,6 +1,12 @@ # 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.12 2003/02/12 08:58:24 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/ChangeLog,v 1.13 2003/03/02 08:51:34 seemant Exp $ + +*fcron-2.0.0-r3 (02 Mar 2003) + + 02 Mar 2003; Seemant Kulleen <seemant@gentoo.org> fcron-2.0.0-r3.ebuild: + use epach, econf; and use /usr/bin/vim instead of /usr/bin/nano to close bug + #16651 by Nils Ohlmeier <nils@ohlmeier.de> 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/sys-apps/fcron/fcron-2.0.0-r3.ebuild b/sys-apps/fcron/fcron-2.0.0-r3.ebuild new file mode 100644 index 000000000000..51585f78655f --- /dev/null +++ b/sys-apps/fcron/fcron-2.0.0-r3.ebuild @@ -0,0 +1,82 @@ +# 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-r3.ebuild,v 1.1 2003/03/02 08:51:34 seemant 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 -ppc ~sparc" + +DEPEND="virtual/editor" +RDEPEND="!virtual/cron sys-apps/cronbase 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 + + insinto /etc + doins ${FILESDIR}/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/digest-fcron-2.0.0-r3 b/sys-apps/fcron/files/digest-fcron-2.0.0-r3 new file mode 100644 index 000000000000..45d732101fce --- /dev/null +++ b/sys-apps/fcron/files/digest-fcron-2.0.0-r3 @@ -0,0 +1 @@ +MD5 b20c6bc5d9435a790e5500ecb7990df8 fcron-2.0.0.src.tar.gz 144069 |