blob: 3bc3ee63044b9a9335ac1bda1c5c982c97ac7aca (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 prefix systemd tmpfiles
DESCRIPTION="A collection of tools to let /etc be stored in a repository"
HOMEPAGE="https://etckeeper.branchable.com/"
SRC_URI="https://git.joeyh.name/index.cgi/etckeeper.git/snapshot/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 arm arm64 hppa ~ppc ppc64 ~riscv ~sparc x86"
SLOT="0"
IUSE="cron test"
BDEPEND="test? (
dev-util/bats
dev-vcs/git
)"
RDEPEND="app-portage/portage-utils
cron? ( virtual/cron )
|| (
dev-vcs/git
dev-vcs/mercurial
dev-vcs/darcs
)
"
RESTRICT="!test? ( test )"
PATCHES=(
# TODO: submit upstream
"${FILESDIR}"/${PN}-1.18.18-gentoo.patch
)
src_prepare() {
default
hprefixify *.d/* etckeeper
local systemdunitdir="$(systemd_get_systemunitdir)"
systemdunitdir="${systemdunitdir#${EPREFIX}}"
sed -i \
-e s'@zsh/vendor-completions@zsh/site-functions@' \
-e s"@/lib/systemd/system@"${systemdunitdir}"@" \
Makefile || die
rm -v init.d/60darcs-deleted-symlinks || die
}
src_compile() {
:
}
src_install() {
emake DESTDIR="${ED}" install
doenvd "$(prefixify_ro "${FILESDIR}"/99${PN})"
newbashcomp bash_completion ${PN}
dodoc doc/README.mdwn
newdoc "${FILESDIR}"/bashrc-r1 bashrc.example
rm -rv "${ED}/var/cache" || die
newtmpfiles "${FILESDIR}/${PN}".tmpfilesd "${PN}".conf
if use cron ; then
exeinto /etc/cron.daily
newexe - etckeeper <<'_EOF_'
#!/bin/sh
set -e
if [ -e /etc/etckeeper/daily ] && [ -e /etc/etckeeper/etckeeper.conf ]; then
. /etc/etckeeper/etckeeper.conf
if [ "$AVOID_DAILY_AUTOCOMMITS" != "1" ]; then
/etc/etckeeper/daily
fi
fi
_EOF_
fi
local conf_update_dir="/etc/portage/conf-update.d"
insinto "${conf_update_dir}"
newins "${FILESDIR}/${PN}-conf-update-hook" "${PN}"
fperms 755 "${conf_update_dir}/${PN}"
}
pkg_postinst() {
tmpfiles_process "${PN}.conf"
elog "${PN} supports git, mercurial and darcs"
elog "This ebuild just ensures at least one is installed!"
elog
elog "You may want to adjust your /etc/portage/bashrc"
elog "see the example file in /usr/share/doc/${PF}"
elog
elog "To initialise your etc-dir as a repository run:"
elog "${PN} init -d /etc"
}
|