blob: a30b096c0a287215e709d3f3c4bb358e67337a45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/rdiff-backup/rdiff-backup-0.12.8.ebuild,v 1.1 2005/07/04 06:32:54 robbat2 Exp $
inherit distutils
DESCRIPTION="Remote incremental file backup utility, similar to rsync but more reliable"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.nongnu.org/rdiff-backup/"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~amd64"
IUSE=""
SLOT="0"
RDEPEND=">=net-libs/librsync-0.9.7"
src_compile() {
distutils_src_compile
}
src_install() {
distutils_src_install
}
|