diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-02-14 18:49:48 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-02-14 18:49:48 +0000 |
commit | ac16bf5259123d5c4d6787ef7bc26852c7bf2c6f (patch) | |
tree | 5b1e5de9155b1a41613183034fcd050a148296d1 /sys-apps/dcron/dcron-2.7-r10.ebuild | |
parent | Added one more einfo. (diff) | |
download | gentoo-2-ac16bf5259123d5c4d6787ef7bc26852c7bf2c6f.tar.gz gentoo-2-ac16bf5259123d5c4d6787ef7bc26852c7bf2c6f.tar.bz2 gentoo-2-ac16bf5259123d5c4d6787ef7bc26852c7bf2c6f.zip |
Added pid in init-script.
Diffstat (limited to 'sys-apps/dcron/dcron-2.7-r10.ebuild')
-rw-r--r-- | sys-apps/dcron/dcron-2.7-r10.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/sys-apps/dcron/dcron-2.7-r10.ebuild b/sys-apps/dcron/dcron-2.7-r10.ebuild new file mode 100644 index 000000000000..c4c5384eb556 --- /dev/null +++ b/sys-apps/dcron/dcron-2.7-r10.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dcron/dcron-2.7-r10.ebuild,v 1.1 2003/02/14 18:49:48 mholzer Exp $ + +# to use this, you must be part of the "cron" group + +S=${WORKDIR}/dcron +DESCRIPTION="A cute little cron from Matt Dillon" +SRC_URI="http://apollo.backplane.com/FreeSrc/dcron27.tgz" +HOMEPAGE="http://apollo.backplane.com/" +KEYWORDS="x86 ppc sparc hppa" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc" + +RDEPEND="!virtual/cron + sys-apps/cronbase + virtual/mta" + +PROVIDE="virtual/cron" + +src_unpack() { + unpack ${A} + cd ${S} + patch -p0 < ${FILESDIR}/${P}-Makefile-gentoo.diff || die + # fix 'crontab -e' to look at $EDITOR and not $VISUAL + cp ${S}/crontab.c ${S}/crontab.c.orig + sed -e 's:VISUAL:EDITOR:g' ${S}/crontab.c.orig > ${S}/crontab.c + cp ${S}/crontab.1 ${S}/crontab.1.orig + sed -e 's:VISUAL:EDITOR:g' ${S}/crontab.1.orig > ${S}/crontab.1 + # fix for lines starting with whitespace + patch -p0 < ${FILESDIR}/${P}-whitespace.diff || die +} + +src_compile() { + make || die +} + +src_install() { + + #this does not work if the directory already exists + diropts -m 0750 -o root -g cron + dodir /var/spool/cron/crontabs + + + dodir /usr/{sbin,bin} + install -o root -g wheel -m 0700 crond ${D}/usr/sbin + install -o root -g cron -m 4750 crontab ${D}/usr/bin + + dodoc CHANGELOG README + doman crontab.1 crond.8 + + exeinto /etc/init.d ; newexe ${FILESDIR}/dcron.rc6 dcron + + insinto /etc + doins ${FILESDIR}/crontab + + dodoc ${FILESDIR}/crontab +} + + +pkg_postinst() { + + echo + einfo "To activate /etc/cron.{hourly|daily|weekly|montly} please run: " + einfo "crontab /etc/crontab" + echo + einfo "!!! That will replace root's current crontab !!!" + echo + +} |