42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104.ebuild,v 1.3 2012/10/18 01:48:04 patrick Exp $
|
|
|
|
EAPI=4
|
|
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="2.5 3.* *-jython"
|
|
|
|
inherit distutils
|
|
|
|
MY_PN=CosmoloPy
|
|
MY_P=${MY_PN}-${PV}
|
|
|
|
DESCRIPTION="Cosmology routines built on NumPy/SciPy"
|
|
HOMEPAGE="http://roban.github.com/CosmoloPy/ http://pypi.python.org/pypi/CosmoloPy"
|
|
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="doc"
|
|
|
|
DEPEND="dev-python/nose
|
|
dev-lang/swig
|
|
doc? ( dev-python/epydoc )"
|
|
RDEPEND="sci-libs/scipy"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
if use doc; then
|
|
einfo "Generation of documentation"
|
|
epydoc -n "CosmoloPy - Cosmology routines built on NumPy/SciPy" \
|
|
--exclude='cosmolopy.EH._power' --exclude='cosmolopy.EH.power' \
|
|
--no-private --no-frames --html --docformat restructuredtext \
|
|
cosmolopy/ -o docAPI/ || die
|
|
dohtml -r docAPI/*
|
|
fi
|
|
}
|