blob: e658f29e075ec93f3ce13d28307347fd88961c93 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="svg2rlg is a python tool to convert SVG files to reportlab
graphics"
HOMEPAGE="https://code.google.com/p/svg2rlg/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ppc ~ppc64 x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}
dev-python/reportlab[${PYTHON_USEDEP}]"
PATCHES=( "${FILESDIR}/${PN}-issue-3.patch" "${FILESDIR}/${PN}-issue-6.patch"
"${FILESDIR}/${PN}-issue-7.patch")
python_test() {
${EPYTHON} test_svg2rlg.py
}
python_prepare_all() {
tmp=`mktemp` || die "mktemp failed"
for i in `find -name '*.py'`; do
tr -d '\r' < $i >$tmp || die "tr failed"
mv $tmp $i || die "mv failed"
done
distutils-r1_python_prepare_all
}
|