Gentoo Archives: gentoo-commits

From: "Thilo Bangert (bangert)" <bangert@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/cronie: ChangeLog cronie-1.4.ebuild
Date: Tue, 28 Jul 2009 20:52:50
Message-Id: E1MVtfD-0005Vk-VJ@stork.gentoo.org
1 bangert 09/07/28 20:52:47
2
3 Modified: ChangeLog
4 Added: cronie-1.4.ebuild
5 Log:
6 version bump -- all patches upstream - yeah
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 sys-process/cronie/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 14 May 2009 16:39:31 -0000 1.4
23 +++ ChangeLog 28 Jul 2009 20:52:47 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-process/cronie
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.4 2009/05/14 16:39:31 bangert Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.5 2009/07/28 20:52:47 bangert Exp $
29 +
30 +*cronie-1.4 (28 Jul 2009)
31 +
32 + 28 Jul 2009; Thilo Bangert <bangert@g.o> +cronie-1.4.ebuild:
33 + version bump
34
35 14 May 2009; Thilo Bangert <bangert@g.o> cronie-1.2.ebuild,
36 cronie-1.3.ebuild:
37
38
39
40 1.1 sys-process/cronie/cronie-1.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/cronie-1.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/cronie-1.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: cronie-1.4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.ebuild,v 1.1 2009/07/28 20:52:47 bangert Exp $
50
51 EAPI="2"
52
53 inherit cron eutils
54
55 DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original vixie-cron."
56 SRC_URI="https://fedorahosted.org/releases/c/r/cronie/${P}.tar.gz"
57 HOMEPAGE="https://fedorahosted.org/cronie/wiki"
58
59 LICENSE="ISC BSD BSD-2"
60 KEYWORDS="~x86"
61 IUSE="inotify pam"
62
63 DEPEND="pam? ( virtual/pam )"
64 RDEPEND="${DEPEND}"
65
66 #cronie supports /etc/crontab
67 CRON_SYSTEM_CRONTAB="yes"
68
69 src_configure() {
70 SPOOL_DIR="/var/spool/cron/crontabs" econf \
71 $(use_with inotify ) \
72 $(use_with pam ) \
73 --with-daemon_username=cron \
74 --with-daemon_groupname=cron \
75 || die "econf failed"
76 }
77
78 src_install() {
79 emake install DESTDIR="${D}" || die "install failed"
80
81 docrondir
82 fowners root:cron /usr/bin/crontab
83 fperms 2750 /usr/bin/crontab
84
85 insinto /etc
86 newins "${FILESDIR}/${PN}-1.2-crontab" crontab
87 newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny
88
89 keepdir /etc/cron.d
90 newinitd "${FILESDIR}/${PN}-1.2-initd" cronie
91 dodoc NEWS AUTHORS README
92 }
93
94 pkg_postinst() {
95 cron_pkg_postinst
96 }