blob: 27b4e4caed43e01edebae0d707710780b3835773 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils vcs-clean
DESCRIPTION="Reoback Backup Solution"
HOMEPAGE="http://reoback.sourceforge.net/"
SRC_URI="mirror://sourceforge/reoback/reoback-${PV/_p/_r}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=dev-lang/perl-5.6.1"
DEPEND=">=app-arch/tar-1.13"
S=${WORKDIR}/${PN}-${PV/_*}
src_prepare() {
ecvs_clean
sed \
-e '/^config=/s:=.*:=/etc/reoback/settings.conf:' \
-e '/^reoback=/s:=.*:=/usr/sbin/reoback.pl:' \
-i run_reoback.sh || die
}
src_install() {
dosbin reoback.pl
insinto /etc/reoback
doins conf/*
fperms o-x /usr/sbin/reoback.pl
insinto /etc/cron.daily
newins run_reoback.sh reoback
dodoc docs/{BUGS,CHANGES,INSTALL,MANUALS,README,TODO}
}
pkg_postinst() {
elog "Reoback can now be activated by simply configuring the files in"
elog "/etc/reoback and then doing: chmod +x /etc/cron.daily/reoback"
}
|