blob: 9b2def56d1fe2bed23e31f209d15f9931c882534 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/basemap-data/basemap-data-0.9.5.ebuild,v 1.1 2007/05/03 14:20:14 bicatali Exp $
DESCRIPTION="Data for matplotlib basemap toolkit"
HOMEPAGE="http://matplotlib.sourceforge.net/matplotlib.toolkits.basemap.basemap.html"
SRC_URI="mirror://sourceforge/matplotlib/${PN}-hires-${PV}.tar.gz"
RESTRICT="test"
IUSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
DEPEND=""
S=${WORKDIR}
src_compile() {
einfo "nothing to compile"
}
src_install() {
insinto /usr/share/basemap
doins *.txt
}
|