summaryrefslogtreecommitdiff
blob: 6c8ec4f32909ba515d0e61cc2f841ba67b47756d (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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="File copying utility with progress and I/O indicator"
HOMEPAGE="http://wiki.goffi.org/wiki/Gcp/en"
SRC_URI="ftp://ftp.goffi.org/${PN}/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="dev-python/progressbar[${PYTHON_USEDEP}]
	dev-python/pygobject:2[${PYTHON_USEDEP}]
	dev-python/dbus-python[${PYTHON_USEDEP}]"

src_prepare() {
	default
	sed -e '/use_setuptools/d' \
	    -e 's#.\+share/doc.\+#],#' -i setup.py || die
}