blob: 3a930a520789058e6f487a179ea89f731aa2b904 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/pyephem/pyephem-3.7.3.3.ebuild,v 1.2 2009/01/09 22:38:11 josejx Exp $
inherit distutils
DESCRIPTION="Astronomical routines for the python programming language"
LICENSE="LGPL-3"
HOMEPAGE="http://rhodesmill.org/pyephem/pyephem.html"
SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=""
src_test() {
# remove a buggy test (it's a doc test), check next version.
mv src/ephem/tests/test_rst.py{,orig}
PYTHONPATH=$(dir -d build/lib*) ${python} setup.py test || die "tests failed"
}
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}
mv "${D}"/usr/lib*/${python}*/site-packages/ephem/doc \
"${D}"/usr/share/doc/${PF}/html || die "Failed to install doc"
}
|