1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cron.eclass,v 1.15 2011/08/22 04:46:31 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cron.eclass,v 1.16 2013/09/05 10:44:22 zx2c4 Exp $ |
4 | |
4 | |
5 | # @ECLASS: cron |
5 | # @ECLASS: cron |
6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
7 | # cron-bugs@gentoo.org |
7 | # cron-bugs@gentoo.org |
8 | # @AUTHOR: |
8 | # @AUTHOR: |
… | |
… | |
25 | |
25 | |
26 | SLOT="0" |
26 | SLOT="0" |
27 | |
27 | |
28 | DEPEND=">=sys-apps/sed-4.0.5" |
28 | DEPEND=">=sys-apps/sed-4.0.5" |
29 | |
29 | |
30 | RDEPEND="virtual/mta |
|
|
31 | >=sys-process/cronbase-0.3.2" |
30 | RDEPEND=">=sys-process/cronbase-0.3.2" |
32 | for pn in vixie-cron bcron cronie dcron fcron; do |
31 | for pn in vixie-cron bcron cronie dcron fcron; do |
33 | [[ ${pn} == "${PN}" ]] || RDEPEND="${RDEPEND} !sys-process/${pn}" |
32 | [[ ${pn} == "${PN}" ]] || RDEPEND="${RDEPEND} !sys-process/${pn}" |
34 | done |
33 | done |
35 | |
34 | |
36 | # @FUNCTION: docrondir |
35 | # @FUNCTION: docrondir |