blob: bcae2e17ac75b699968177fbeeeb36df21930d6d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r8.ebuild,v 1.3 2005/08/09 01:09:44 ka0ttic Exp $
inherit cron toolchain-funcs debug pam
# no useful homepage, bug #65898
HOMEPAGE="ftp://ftp.isc.org/isc/cron/"
DESCRIPTION="Paul Vixie's cron daemon, a fully featured crond implementation"
SELINUX_PATCH="${P}-selinux.diff"
GENTOO_PATCH_REV="r4"
SRC_URI="mirror://gentoo/${P}.tar.bz2
mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
LICENSE="as-is"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 mips ~ppc ~ppc64 sparc x86"
IUSE="selinux pam debug"
DEPEND=">=sys-apps/portage-2.0.47-r10
selinux? ( sys-libs/libselinux )
pam? ( virtual/pam )"
RDEPEND="selinux? ( sys-libs/libselinux )
pam? ( virtual/pam )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${P}-gentoo-${GENTOO_PATCH_REV}.patch
epatch ${FILESDIR}/crontab.5.diff
epatch ${FILESDIR}/${P}-commandline.patch
epatch ${FILESDIR}/${P}-basename.diff
use pam && epatch ${FILESDIR}/${P}-pam.patch
use selinux && epatch ${FILESDIR}/${SELINUX_PATCH}
}
src_compile() {
# we need to tinker with ldflags since we're installing as setuid. see
# "[gentoo-core] Heads up changes in suid handing with portage >=51_pre21"
# for details. Note that we do the sed fixes here rather than in unpack so
# that our changes to LDFLAGS are picked up.
append-ldflags -Wl,-z,now
use debug && append-flags -DDEBUGGING
sed -i -e "s:gcc \(-Wall.*\):$(tc-getCC) \1 ${CFLAGS}:" \
-e "s:^\(LDFLAGS[ \t]\+=\).*:\1 ${LDFLAGS}:" Makefile \
|| die "sed Makefile failed"
emake || die "emake failed"
}
src_install() {
docrondir
docron
docrontab
# /etc stuff
insinto /etc
newins ${FILESDIR}/crontab-3.0.1-r4 crontab
newins ${FILESDIR}/${P}-cron.deny cron.deny
keepdir /etc/cron.d
newpamd ${FILESDIR}/pamd.compatible cron
newinitd ${FILESDIR}/vixie-cron.rc6 vixie-cron
# doc stuff
doman crontab.1 crontab.5 cron.8
dodoc ${FILESDIR}/crontab
dodoc CHANGES CONVERSION FEATURES MAIL README THANKS
}
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
# bug 71326
if [[ -u ${ROOT}/etc/pam.d/cron ]] ; then
echo
ewarn "Warning: previous ebuilds didn't reset permissions prior"
ewarn "to installing crontab, resulting in /etc/pam.d/cron being"
ewarn "installed with the SUID and executable bits set."
ewarn
ewarn "Run the following as root to set the proper permissions:"
ewarn " chmod 0644 /etc/pam.d/cron"
echo
fi
cron_pkg_postinst
}
|