diff options
Diffstat (limited to 'media-gfx/svg2rlg/svg2rlg-0.3.ebuild')
-rw-r--r-- | media-gfx/svg2rlg/svg2rlg-0.3.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/media-gfx/svg2rlg/svg2rlg-0.3.ebuild b/media-gfx/svg2rlg/svg2rlg-0.3.ebuild new file mode 100644 index 000000000000..a12385102797 --- /dev/null +++ b/media-gfx/svg2rlg/svg2rlg-0.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/svg2rlg/svg2rlg-0.3.ebuild,v 1.1 2013/05/08 04:56:14 yac Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) + +inherit distutils-r1 + +DESCRIPTION="svg2rlg is a python tool to convert SVG files to reportlab +graphics" +HOMEPAGE="http://code.google.com/p/svg2rlg/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~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 +} |