blob: a8f7e4ea63b3f0570cfbfd9d1b31361e9fd678a0 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/vixie-cron/vixie-cron-3.0.1-r1.ebuild,v 1.5 2004/02/23 00:53:59 agriffis Exp $
inherit eutils
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="The Vixie cron daemon"
HOMEPAGE="http://www.vix.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 amd64 ppc sparc alpha mips hppa ia64"
DEPEND=">=sys-apps/portage-2.0.47-r10
>=sys-apps/sed-4.0.5"
RDEPEND="!virtual/cron
sys-apps/cronbase
virtual/mta"
PROVIDE="virtual/cron"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.patch
sed -i "s:-O2:${CFLAGS}:" Makefile
}
src_compile() {
emake || die
}
src_install() {
#this does not work if the directory exists already
diropts -m0750 -o root -g cron
keepdir /var/spool/cron/crontabs/
doman crontab.1 crontab.5 cron.8
dodoc CHANGES CONVERSION FEATURES MAIL MANIFEST README THANKS
diropts -m0755 ; dodir /etc/cron.d
keepdir /etc/cron.d
exeinto /etc/init.d
newexe ${FILESDIR}/vixie-cron.rc6 vixie-cron
insinto /etc
doins ${FILESDIR}/crontab
dodoc ${FILESDIR}/crontab
insinto /usr/sbin
insopts -o root -g root -m 0750 ; doins cron
insinto /usr/bin
insopts -o root -g cron -m 4750 ; doins crontab
}
pkg_postinst() {
if [ -f ${ROOT}/etc/init.d/vcron ]
then
ewarn "Please run:"
ewarn "rc-update del vcron"
ewarn "rc-update add vixie-cron default"
fi
}
|