blob: fc9461ec63a7bdd12b5633b11b7f02bb3ec183d2 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_4} )
PYTHON_MULTIPLE_ABI=1
inherit distutils-r1
DESCRIPTION="python library for reading and writing collada documents"
HOMEPAGE="https://pycollada.github.com/"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples test"
DEPEND="doc? ( dev-python/sphinx )
test? ( dev-python/python-dateutil )"
RDEPEND="dev-python/numpy
dev-python/lxml
>=dev-python/python-dateutil-2.0"
src_compile() {
distutils-r1_src_compile
if use doc ; then
pushd docs
emake html
popd
fi
}
src_install() {
distutils-r1_src_install
if use doc ; then
pushd docs/_build/html
dohtml -r *
popd
fi
if use examples ; then
insinto /usr/share/${P}/
doins -r examples
fi
install_test_data() {
insinto $(python_get_sitedir)/collada/tests/
doins -r collada/tests/data
}
python_foreach_impl install_test_data
}
src_test() {
test_collada() {
for script in "${S}"/collada/tests/*.py ; do
PYTHONPATH="${S}" $EPYTHON "${script}"
done
}
python_foreach_impl test_collada
}
|