blob: 6577bc56b585a9a6a269b98ad0878387d19ecb69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/dcron/dcron-2.7.ebuild,v 1.2 2000/12/22 23:14:33 drobbins Exp $
A=dcron27.tgz
S=${WORKDIR}/dcron
DESCRIPTION="A cute little cron from Matt Dillon"
SRC_URI="http://apollo.backplane.com/FreeSrc/${A}"
HOMEPAGE="http://apollo.backplane.com"
DEPEND=">=sys-libs/glibc-2.1.3"
src_compile() {
try make
}
src_install() {
#to use cron, you must be part of the "cron" group
dobin crontab
dosbin crond
chown root.wheel ${D}/usr/sbin/crond
chown root.cron ${D}/usr/bin/crontab
chmod 700 ${D}/usr/sbin/crond
chmod 4750 ${D}/usr/bin/crontab
doman *.[18]
diropts -m0750
dodir /var/spool/cron/crontabs
dodoc CHANGELOG README
}
|