blob: 0569492eb52086c6672f924d1d00f459e7c3147b (
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
51
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/basemap/basemap-0.9.9-r1.ebuild,v 1.1 2008/02/13 14:12:09 bicatali Exp $
inherit eutils distutils
DESCRIPTION="matplotlib toolkit to plot map projections"
HOMEPAGE="http://matplotlib.sourceforge.net/matplotlib.toolkits.basemap.basemap.html"
SRC_URI="mirror://sourceforge/matplotlib/${P}.tar.gz"
IUSE="examples"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="MIT GPL-2"
CDEPEND="sci-libs/shapelib
dev-python/numpy
>=dev-python/matplotlib-0.90
=sci-libs/geos-2.2.3*"
DEPEND="${CDEPEND}
dev-python/setuptools"
RDEPEND="${CDEPEND}
dev-python/dap"
DOCS="FAQ API_CHANGES"
pkg_setup() {
if built_with_use sci-libs/geos python; then
eerror "${P} conflicts with geos python bindings"
eerror "Re-install geos without the python flag"
die "geos python use check failed"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# patch to use shapelib and geos system libraries
# proj is unfortunately an internal patched version (bug #209895)
epatch "${FILESDIR}"/${P}-syslib.patch
}
src_install() {
distutils_src_install --install-data=/usr/share/${PN}
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples || die
fi
}
|