blob: 87d941b0033687aa832a19c79b2b236de25a1220 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Hdup is backup program using tar, find, gzip/bzip2, mcrypt and ssh"
HOMEPAGE="http://www.miek.nl/projects/hdup2/index.html"
SRC_URI="http://www.miek.nl/projects/${PN}2/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="crypt"
CDEPEND="
app-arch/bzip2
app-arch/gzip
app-arch/tar
>=dev-libs/glib-2.0"
RDEPEND="
${CDEPEND}
net-misc/openssh
sys-apps/coreutils
sys-apps/findutils
crypt? ( app-crypt/mcrypt )"
DEPEND="
${CDEPEND}
virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${PN}-2.0.14-fix-build-system.patch )
src_install() {
HTML_DOCS=( doc/FAQ.html )
default
dodoc Credits
insinto /usr/share/${PN}
doins -r contrib examples
}
pkg_postinst() {
elog "Now edit your /etc/hdup/${PN}.conf to configure your backups."
elog "You can also check included examples and contrib, see /usr/share/${PN}/."
}
|