You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/cosmolopy/cosmolopy-0.1.104.ebuild

43 lines
1.1 KiB

# 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.1 2012/02/07 12:05:39 xarthisius Exp $
EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="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"
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
}