blob: 054945c95cb77d866c8b6a2dc7555c64c77a42f2 (
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
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-2.0.2.ebuild,v 1.3 2006/09/29 19:19:03 wormo Exp $
inherit eutils flag-o-matic
DESCRIPTION="A command scheduler with extended capabilities over cron and anacron"
HOMEPAGE="http://fcron.free.fr/"
SRC_URI="http://fcron.free.fr/archives/${P}.src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc mips hppa amd64"
IUSE=""
DEPEND="virtual/editor"
RDEPEND="!virtual/cron
>=sys-process/cronbase-0.2.1-r3
virtual/mta"
PROVIDE="virtual/cron"
pkg_setup() {
# bug #65263
# fcron's ./configure complains if EDITOR is not set to an absolute path,
# so try to set it to the abs path if it isn't
if [[ "${EDITOR}" != */* ]] ; then
einfo "Attempting to deduce absolute path of ${EDITOR}"
EDITOR=$(which ${EDITOR} 2>/dev/null)
[[ -x "${EDITOR}" ]] || \
die "Please set the EDITOR env variable to the path of a valid executable."
fi
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-2.0.0-configure.diff
# fix LIBOBJS vs AC_LIBOBJ problem
sed -i -e 's|LIBOBJS|AC_LIBOBJ|g' configure.in
# respect LDFLAGS
sed -i "s:\(@LIBS@\):\$(LDFLAGS) \1:" Makefile.in || die "sed failed"
}
src_compile() {
autoconf || die "autoconf failed"
# QA security notice fix; see "[gentoo-core] Heads up changes in suid
# handing with portage >=51_pre21" for more details.
append-ldflags -Wl,-z,now
econf \
--with-username=cron \
--with-groupname=cron \
--with-piddir=/var/run \
--with-etcdir=/etc/fcron \
--with-spooldir=/var/spool/cron \
--with-sendmail=/usr/sbin/sendmail \
--with-editor="${EDITOR}" \
--with-cflags="${CFLAGS}" \
|| die "bad ./configure"
emake || die "compile problem"
}
src_install() {
dodir /var/spool
diropts -m 0770 -o cron -g cron
keepdir /var/spool/cron/fcrontabs
insinto /usr/sbin
insopts -o root -g root -m 0110 ; doins fcron
insinto /usr/bin
insopts -o cron -g cron -m 6110 ; doins fcrontab
insopts -o root -g cron -m 6110 ; doins fcronsighup
dosym fcrontab /usr/bin/crontab
insinto /etc/fcron
insopts -m 640 -o root -g cron
doins files/fcron.{allow,deny,conf}
dosed 's:^\(fcrontabs.*=.*\)$:\1/fcrontabs:' /etc/fcron/fcron.conf \
|| die "dosed fcron.conf failed"
newinitd ${FILESDIR}/fcron.rc6 fcron || die "newinitd failed"
insinto /etc
insopts -m 0644 -o root -g root
doins ${FILESDIR}/crontab
doman doc/*.[1-8]
dodoc MANIFEST VERSION doc/{CHANGES,README,FAQ,INSTALL,THANKS}
newdoc files/fcron.conf fcron.conf.sample
dohtml doc/*.html
dodoc ${FILESDIR}/crontab
}
pkg_postinst() {
einfo "Each user who uses fcron should be added to the cron group"
einfo "in /etc/group and also be added in /etc/fcron/fcron.allow"
einfo
einfo "To activate /etc/cron.{hourly|daily|weekly|montly} please run: "
einfo "crontab /etc/crontab"
einfo
einfo "!!! That will replace root's current crontab !!!"
einfo
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
}
|