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/basemap/basemap-1.0.7-r1.ebuild

74 lines
2.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/basemap/basemap-1.0.7-r1.ebuild,v 1.4 2015/03/08 23:40:08 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="matplotlib toolkit to plot map projections"
HOMEPAGE="http://matplotlib.sourceforge.net/basemap/doc/html/ http://pypi.python.org/pypi/basemap"
SRC_URI="mirror://sourceforge/matplotlib/${P}.tar.gz"
IUSE="examples test"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
LICENSE="MIT GPL-2"
CDEPEND="sci-libs/shapelib
>=dev-python/matplotlib-0.98[${PYTHON_USEDEP}]
>=sci-libs/geos-3.3.1[python,${PYTHON_USEDEP}]"
DEPEND="${CDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
>=dev-python/pupynere-1.0.8[${PYTHON_USEDEP}]
dev-python/httplib2[${PYTHON_USEDEP}]
dev-python/dap[${PYTHON_USEDEP}]"
DOCS="FAQ API_CHANGES"
#REQUIRED_USE="test? ( examples )"
# The test phase ought never have been onvoked according to the above.
# The test phase appears to require the package to fist be emerged, which ...
# Until the distutils_install_for_testing func refrains from failing with
# mkdir: cannot create directory /test: Permission denied
# reluctantly this phase is assigned
RESTRICT="test"
src_prepare() {
sed -i \
-e "s:/usr:${EPREFIX}/usr:g" \
setup.py || die
# use /usr/share/data
sed -i \
-e "/_datadir.*=.*join/s|\(.*datadir.*=\).*|\1'${EROOT}usr/share/${PN}'|g" \
"${S}"/lib/mpl_toolkits/basemap/*.py || die
distutils-r1_src_prepare
append-flags -fno-strict-aliasing
}
#src_test() {
# distutils_install_for_testing
#}
python_install() {
distutils-r1_python_install
# --install-data="${EPREFIX}/usr/share/${PN}" on testing is found not to work;
# setup.py is a mess. Someone care to patch setup.py please proceed; substitute with
insinto usr/share/basemap/
doins lib/mpl_toolkits/basemap/data/*
# clean up collision with matplotlib
rm -f "${D}$(python_get_sitedir)/mpl_toolkits/__init__.py"
# respect FHS
rm -fr "${D}$(python_get_sitedir)/mpl_toolkits/basemap/data"
}
python_install_all() {
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}