summaryrefslogtreecommitdiff
blob: fd76e62ff2498a4e87ef466c7d2ee77d0631a5fa (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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5
RESTRICT="mirror"
PYTHON_COMPAT=( pypy python{2_7,3_3,3_4} )
inherit eutils python-single-r1 systemd

DESCRIPTION="systemd units to provide minimal cron daemon functionality by running scripts in cron directories"
HOMEPAGE="https://github.com/dbent/systemd-cron/"
SRC_URI="https://github.com/dbent/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cron-boot yearly"

RDEPEND=">=sys-apps/systemd-212
	sys-apps/debianutils"
DEPEND=""

src_prepare() {
	python_setup
	python_fix_shebang "${S}/src/bin"
	sed -i \
		-e 's/^crontab/crontab-systemd/' \
		"${S}/src/man/crontab.1.in"
	epatch_user
}

my_use_enable() {
	if use ${1}
	then	echo --enable-${2:-${1}}=yes
	else	echo --enable-${2:-${1}}=no
	fi
}

src_configure() {
	./configure \
		--prefix="${EPREFIX}" \
		--runparts="${EPREFIX}/bin/run-parts" \
		--mandir="${EPREFIX}/usr/share/man" \
		--unitdir="$(systemd_get_unitdir)" \
		$(my_use_enable cron-boot boot) \
		$(my_use_enable yearly) \
		--enable-persistent=yes
}

src_install() {
	emake DESTDIR="${ED}" install
	dodoc LICENSE
	mv "${ED}"/bin/crontab{,-systemd} || die
	mv "${ED}"/usr/share/man/man1/crontab{,-systemd}.1 || die
	mv "${ED}"/usr/share/man/man5/crontab{,-systemd}.5 || die
}