blob: e7983f6f8b095c6af8ac09b5d5c647f88adce05e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/anacron/anacron-2.3.ebuild,v 1.9 2004/06/28 15:58:09 vapier Exp $
inherit eutils
DESCRIPTION="a periodic command scheduler"
HOMEPAGE="http://anacron.sourceforge.net/"
SRC_URI=" http://umn.dl.sourceforge.net/sourceforge/anacron/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE=""
DEPEND="virtual/libc
>=sys-apps/sed-4"
RDEPEND="virtual/mta
virtual/cron"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-compile-fix-from-debian.patch
sed -i "s:^CFLAGS =:CFLAGS = $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/anacron
doman anacrontab.5 anacron.8
exeinto /etc/init.d ; newexe ${FILESDIR}/anacron.rc6 anacron
dodoc ChangeLog COPYING README TODO
insinto /usr/sbin
insopts -o root -g root -m 0750 ; doins anacron
insinto /etc
doins ${FILESDIR}/anacrontab
}
pkg_postinst() {
einfo "Schedule the command \"anacron -s\" as a daily cron-job (preferably"
einfo "at some early morning hour). This will make sure that jobs are run"
einfo "when the systems is left running for a night."
einfo ""
einfo "Update /etc/anacrontab to include what you want anacron to run."
}
|