blob: 145d41bcb94422440bb2900007b0483054eb9f64 (
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
52
53
54
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyclimate/pyclimate-1.2.2.ebuild,v 1.5 2009/11/26 17:35:59 maekke Exp $
inherit eutils distutils
MY_P="${P/pyclimate/PyClimate}"
S="${WORKDIR}/${MY_P}"
IUSE=""
DESCRIPTION="Climate Data Analysis Module for Python"
SRC_URI="http://fisica.ehu.es/jsaenz/pyclimate_files/${MY_P}.tar.gz"
HOMEPAGE="http://www.pyclimate.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ~ia64 ppc ~sparc x86"
DEPEND="virtual/python
dev-python/numpy
>=dev-python/scientificpython-2.8
>=sci-libs/netcdf-3.0"
src_install() {
distutils_src_install
dodir /usr/share/doc/${PF}/doc
insinto /usr/share/doc/${PF}/doc
doins doc/*
doins doc/dcdflib_doc/dcdflib*
dodir /usr/share/${PF}/examples
insinto /usr/share/${PF}/examples
doins examples/*
dodir /usr/share/${PF}/test
insinto /usr/share/${PF}/test
doins test/*
}
pkg_postinst() {
python_version
python_mod_optimize /usr/lib/python${PYVER}/site-packages/pyclimate
elog
elog "Try the test script in /usr/share/${PF}/test."
elog "See the examples in /usr/share/${PF}/examples."
elog "Read the doc in /usr/share/doc/${PF}."
elog
}
pkg_postrm() {
python_version
python_mod_cleanup
}
|