blob: a547b1315f333b06b167d5cbd5e5d559cd632dcc (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils versionator
MY_PV="$(get_version_component_range 1-2)"
DESCRIPTION="Linux Backup, Done Right"
HOMEPAGE="https://launchpad.net/time-drive"
SRC_URI="http://launchpad.net/${PN}/${MY_PV}/${MY_PV}/+download/Time-Drive-${PV}.zip"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-2"
IUSE=""
RDEPEND="
app-backup/duplicity
dev-python/PyQt4"
DEPEND="app-arch/unzip"
PYTHON_MODNAME="timedrive"
|