summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2013-02-14 16:06:13 +0000
committerLars Wendler <polynomial-c@gentoo.org>2013-02-14 16:06:13 +0000
commit47d2282f16b712193a3c8da913464add78380e9b (patch)
treed44e0773772723695964256b64d296b85fdccdcf /sys-process
parentrdepend on lsof for detecting what blocks alsa devices. bug #406833 by Amade... (diff)
downloadgentoo-2-47d2282f16b712193a3c8da913464add78380e9b.tar.gz
gentoo-2-47d2282f16b712193a3c8da913464add78380e9b.tar.bz2
gentoo-2-47d2282f16b712193a3c8da913464add78380e9b.zip
Removed old
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/cronie/ChangeLog6
-rw-r--r--sys-process/cronie/cronie-1.4.8.ebuild56
-rwxr-xr-xsys-process/cronie/files/cronie-1.2-initd22
3 files changed, 5 insertions, 79 deletions
diff --git a/sys-process/cronie/ChangeLog b/sys-process/cronie/ChangeLog
index e8bb6e035d5a..977e6c32a879 100644
--- a/sys-process/cronie/ChangeLog
+++ b/sys-process/cronie/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-process/cronie
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.33 2013/02/06 19:49:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.34 2013/02/14 16:06:12 polynomial-c Exp $
+
+ 14 Feb 2013; Lars Wendler <polynomial-c@gentoo.org> -files/cronie-1.2-initd,
+ -cronie-1.4.8.ebuild:
+ Removed old.
06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> cronie-1.4.9-r4.ebuild:
Stable for sparc, wrt bug #453364
diff --git a/sys-process/cronie/cronie-1.4.8.ebuild b/sys-process/cronie/cronie-1.4.8.ebuild
deleted file mode 100644
index 897f56386300..000000000000
--- a/sys-process/cronie/cronie-1.4.8.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.8.ebuild,v 1.6 2012/12/18 22:36:34 polynomial-c Exp $
-
-EAPI="3"
-
-inherit cron eutils pam user
-
-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="amd64 ~arm ~sparc x86"
-IUSE="inotify pam"
-
-DEPEND="pam? ( virtual/pam )"
-RDEPEND="${DEPEND}"
-
-#cronie supports /etc/crontab
-CRON_SYSTEM_CRONTAB="yes"
-
-pkg_setup() {
- enewgroup crontab
-}
-
-src_configure() {
- SPOOL_DIR="/var/spool/cron/crontabs" econf \
- $(use_with inotify ) \
- $(use_with pam ) \
- --with-daemon_username=cron \
- --with-daemon_groupname=cron \
- || die "econf failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "install failed"
-
- docrondir -m 1730 -o root -g crontab
- fowners root:crontab /usr/bin/crontab
- fperms 2751 /usr/bin/crontab
-
- insinto /etc
- newins "${FILESDIR}/${PN}-1.2-crontab" crontab
- newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny
-
- keepdir /etc/cron.d
- newinitd "${FILESDIR}/${PN}-1.2-initd" cronie
- newpamd "${FILESDIR}/${PN}-1.4.3-pamd" crond
-
- dodoc NEWS AUTHORS README
-}
-
-pkg_postinst() {
- cron_pkg_postinst
-}
diff --git a/sys-process/cronie/files/cronie-1.2-initd b/sys-process/cronie/files/cronie-1.2-initd
deleted file mode 100755
index 7590a7d85ffb..000000000000
--- a/sys-process/cronie/files/cronie-1.2-initd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/files/cronie-1.2-initd,v 1.1 2009/02/17 22:09:35 bangert Exp $
-
-depend() {
- use clock logger
- need localmount
- provide cron
-}
-
-start() {
- ebegin "Starting cronie"
- start-stop-daemon --start --quiet --exec /usr/sbin/crond
- eend $?
-}
-
-stop() {
- ebegin "Stopping cronie"
- start-stop-daemon --stop --quiet --pidfile /var/run/crond.pid
- eend $?
-}