blob: ef940da9c5c8142a633db0bf57db77c745316b8f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyclimate/pyclimate-1.2.1.ebuild,v 1.2 2004/06/25 01:38:18 agriffis Exp $
inherit eutils
MY_P="${P/pyclimate/PyClimate}"
IUSE=""
DESCRIPTION="Climate Data Analysis Module for Python"
SRC_URI="http://starship.python.net/crew/jsaenz/pyclimate/downloads/${MY_P}.tar.gz"
HOMEPAGE="http://starship.python.net/crew/jsaenz/pyclimate/index.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~alpha ~ppc"
DEPEND="virtual/python
>=dev-python/numeric-19.0
dev-python/ScientificPython
>=app-sci/netcdf-3.0"
src_install() {
python setup.py install --prefix=${D}/usr || die "Python Install Failed"
dodoc README PKG-INFO
dodir /usr/share/doc/${PF}/doc
insinto /usr/share/doc/${PF}/doc
doins doc/*
dodir /usr/share/doc/${PF}/examples
insinto /usr/share/doc/${PF}/examples
doins examples/*
}
|