blob: fde02d1ad421fd801af4011e66d3510a3c41f3b4 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/rdiff-backup/rdiff-backup-0.10.1.ebuild,v 1.3 2002/12/17 19:47:37 blauwers Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Remote incremental file backup utility, similar to rsync but more reliable"
SRC_URI="http://www.stanford.edu/~bescoto/rdiff-backup/${P}.tar.gz"
HOMEPAGE="http://www.stanford.edu/~bescoto/rdiff-backup/"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
RDEPEND=">=net-libs/librsync-0.9.5
>=dev-lang/python-2.2"
DEPEND="${RDEPEND}"
inherit_distutils
src_compile() {
patch -p0 < ${FILESDIR}/rpath.patch || die
distutils_src_compile
}
src_install() {
distutils_src_install
}
|