blob: b93e78689bb931cb677e1fb22c19cdf64c766cd3 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-3.0.1-r5.ebuild,v 1.2 2006/01/28 18:53:32 blubb Exp $
inherit eutils
IUSE="selinux pam"
SELINUX_PATCH="${P}-selinux.diff"
DESCRIPTION="The Vixie cron daemon"
HOMEPAGE="http://www.vix.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2
mirror://gentoo/${P}-gentoo.patch.bz2"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~x86 ppc ~sparc ~alpha ~mips ~hppa ~ia64 ~amd64 ~ppc64"
DEPEND=">=sys-apps/portage-2.0.47-r10
>=sys-apps/sed-4.0.5
selinux? ( sys-libs/libselinux )
pam? ( sys-libs/pam )"
RDEPEND="!virtual/cron
>=sys-process/cronbase-0.2.1-r3
virtual/mta
selinux? ( sys-libs/libselinux )
pam? ( sys-libs/pam )"
PROVIDE="virtual/cron"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${P}-gentoo.patch
epatch ${FILESDIR}/${P}-close_stdin.diff
epatch ${FILESDIR}/crontab.5.diff
use pam && epatch ${FILESDIR}/${P}-pam.patch
use selinux && epatch ${FILESDIR}/${SELINUX_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
dodir /var/spool/cron/crontabs
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
insopts -o root -g root -m 0644
newins ${FILESDIR}/crontab-3.0.1-r4 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
if use pam
then
insinto /etc/pam.d
newins ${FILESDIR}/cron.pam.d cron
fi
}
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
echo
einfo "You may wish to read the Gentoo Linux Cron Guide, which can be"
einfo "found online at:"
einfo " http://www.gentoo.org/doc/en/cron-guide.xml"
echo
}
|