diff options
author | Thilo Bangert <bangert@gentoo.org> | 2009-08-23 20:12:44 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2009-08-23 20:12:44 +0000 |
commit | d590fd13a1a4ac80c70ec193ea5d1602da6006c1 (patch) | |
tree | cff6cfcb26e5385f69b2970a9a6c7564ab878de8 /sys-process/cronie | |
parent | Rename xfce4-radio to xfce4-radio-plugin. (diff) | |
download | gentoo-2-d590fd13a1a4ac80c70ec193ea5d1602da6006c1.tar.gz gentoo-2-d590fd13a1a4ac80c70ec193ea5d1602da6006c1.tar.bz2 gentoo-2-d590fd13a1a4ac80c70ec193ea5d1602da6006c1.zip |
version bump - remove old versions
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'sys-process/cronie')
-rw-r--r-- | sys-process/cronie/ChangeLog | 9 | ||||
-rw-r--r-- | sys-process/cronie/cronie-1.2.ebuild | 55 | ||||
-rw-r--r-- | sys-process/cronie/cronie-1.4.1.ebuild (renamed from sys-process/cronie/cronie-1.3.ebuild) | 10 | ||||
-rw-r--r-- | sys-process/cronie/files/cronie-1.2-pathnames.h-fix-SPOOL_DIR.patch | 11 |
4 files changed, 11 insertions, 74 deletions
diff --git a/sys-process/cronie/ChangeLog b/sys-process/cronie/ChangeLog index 852252ffa369..23f41c80c5d0 100644 --- a/sys-process/cronie/ChangeLog +++ b/sys-process/cronie/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-process/cronie # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.5 2009/07/28 20:52:47 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.6 2009/08/23 20:12:43 bangert Exp $ + +*cronie-1.4.1 (23 Aug 2009) + + 23 Aug 2009; Thilo Bangert <bangert@gentoo.org> -cronie-1.2.ebuild, + -files/cronie-1.2-pathnames.h-fix-SPOOL_DIR.patch, -cronie-1.3.ebuild, + +cronie-1.4.1.ebuild: + version bump - remove old versions *cronie-1.4 (28 Jul 2009) diff --git a/sys-process/cronie/cronie-1.2.ebuild b/sys-process/cronie/cronie-1.2.ebuild deleted file mode 100644 index c8e6b161ad6a..000000000000 --- a/sys-process/cronie/cronie-1.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.2.ebuild,v 1.2 2009/05/14 16:39:31 bangert Exp $ - -inherit cron eutils - -DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original vixie-cron." -SRC_URI="https://fedorahosted.org/releases/c/r/cronie/${P}.tar.gz" -HOMEPAGE="https://fedorahosted.org/cronie/wiki" - -LICENSE="ISC BSD BSD-2" -KEYWORDS="~x86" -IUSE="inotify pam" - -DEPEND="pam? ( virtual/pam )" - -#cronie supports /etc/crontab -CRON_SYSTEM_CRONTAB="yes" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-pathnames.h-fix-SPOOL_DIR.patch" -} - -src_compile() { - econf \ - $(use_with inotify ) \ - $(use_with pam ) \ - --with-daemon_username=cron \ - --with-daemon_groupname=cron \ - --with-crontabdir=/var/spool/cron/crontabs \ - || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "install failed" - - docrondir - fowners root:cron /usr/bin/crontab - fperms 2750 /usr/bin/crontab - - insinto /etc - newins "${FILESDIR}/${P}-crontab" crontab - newins "${FILESDIR}/${P}-cron.deny" cron.deny - - keepdir /etc/cron.d - newinitd "${FILESDIR}/${P}-initd" cronie - dodoc NEWS AUTHORS README -} - -pkg_postinst() { - cron_pkg_postinst -} diff --git a/sys-process/cronie/cronie-1.3.ebuild b/sys-process/cronie/cronie-1.4.1.ebuild index d7c1d3f8b7b2..3e5db54204eb 100644 --- a/sys-process/cronie/cronie-1.3.ebuild +++ b/sys-process/cronie/cronie-1.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.3.ebuild,v 1.2 2009/05/14 16:39:31 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.1.ebuild,v 1.1 2009/08/23 20:12:43 bangert Exp $ EAPI="2" @@ -20,12 +20,8 @@ RDEPEND="${DEPEND}" #cronie supports /etc/crontab CRON_SYSTEM_CRONTAB="yes" -src_prepare() { - epatch "${FILESDIR}/${PN}-1.2-pathnames.h-fix-SPOOL_DIR.patch" -} - src_configure() { - econf \ + SPOOL_DIR="/var/spool/cron/crontabs" econf \ $(use_with inotify ) \ $(use_with pam ) \ --with-daemon_username=cron \ @@ -34,7 +30,7 @@ src_configure() { } src_install() { - make install DESTDIR="${D}" || die "install failed" + emake install DESTDIR="${D}" || die "install failed" docrondir fowners root:cron /usr/bin/crontab diff --git a/sys-process/cronie/files/cronie-1.2-pathnames.h-fix-SPOOL_DIR.patch b/sys-process/cronie/files/cronie-1.2-pathnames.h-fix-SPOOL_DIR.patch deleted file mode 100644 index 9ea70c14f3b2..000000000000 --- a/sys-process/cronie/files/cronie-1.2-pathnames.h-fix-SPOOL_DIR.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- src/pathnames.h.orig 2009-02-17 22:43:14.000000000 +0100 -+++ src/pathnames.h 2009-02-17 22:43:31.000000000 +0100 -@@ -46,7 +46,7 @@ - * newer than they were last time around (or which - * didn't exist last time around...) - */ --#define SPOOL_DIR "cron" -+#define SPOOL_DIR "cron/crontabs" - - /* cron allow/deny file. At least cron.deny must - * exist for ordinary users to run crontab. |