blob: 5852caeb591929eeb560c7219ae0a2689a15b3a9 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.4.1.ebuild,v 1.4 2011/08/21 21:58:53 mr_bones_ Exp $
EAPI="2"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils eutils
DESCRIPTION="Astronomical routines for the python programming language"
LICENSE="LGPL-3"
HOMEPAGE="http://rhodesmill.org/pyephem/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc test"
RDEPEND=""
DEPEND="doc? ( dev-python/sphinx )
test? ( dev-python/setuptools )"
RESTRICT_PYTHON_ABIS="2.4 3.*"
src_prepare() {
# don't install rst files
sed -i -e "s:'doc/\*\.rst',::" "${S}"/setup.py || die
distutils_src_prepare
}
src_compile() {
distutils_src_compile
if use doc; then
cd src/ephem/doc
PYTHONPATH=../../.. emake html || die "Building of documentation failed"
fi
}
src_test() {
# remove a buggy test (it's a doc test), check next version.
mv src/ephem/tests/test_rst.py{,orig}
distutils_src_test
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r src/ephem/doc/.build/html/* || die "Installation of documentation failed"
fi
}
|