blob: 3ca9d4592ec7c02ccdaba2333fb91beb3d9395e0 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/duplicity-0.4.2-r2.ebuild,v 1.2 2007/12/02 08:55:40 ticho Exp $
inherit distutils eutils
DESCRIPTION="duplicity is a secure backup system using gnupg to encrypt data"
HOMEPAGE="http://www.nongnu.org/duplicity/"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="virtual/libc
>=dev-lang/python-2.3
>=net-libs/librsync-0.9.6"
RDEPEND="${DEPEND}
app-crypt/gnupg"
src_unpack() {
unpack ${A}
cd "${S}"
# Fix crash on FTP timeout, bug #147054.
epatch "${FILESDIR}"/${PV}-ftp-retry.patch
# Fix from upstream, Python 2.5 support.
epatch "${FILESDIR}"/${P}-python-2.5.patch
# Fix behavior for scp:// URL when /bin/sh is bash, bug #151938.
sed -i -e "s:echo -e:printf:" src/backends.py
}
src_compile() {
distutils_src_compile
}
src_install() {
python setup.py install --prefix="${D}"/usr
}
pkg_postinst() {
python_version
python_mod_optimize /usr/lib/python${PYVER}/site-packages/duplicity
}
pkg_postrm() {
python_version
python_mod_cleanup
}
|