blob: 5bbf79582368e41fde28888a90655f905ff7f816 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycdf/pycdf-0.6.2_rc1.ebuild,v 1.1 2006/07/23 22:17:32 liquidx Exp $
inherit distutils
MY_P=${PN}-${PV:0:3}-${PV:4:1}-${PV:6:3}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Python interface to scientific netCDF library."
HOMEPAGE="http://pysclint.sourceforge.net/pycdf/"
SRC_URI="mirror://sourceforge/pysclint/${MY_P}.tar.gz"
LICENSE="PYTHON"
SLOT="0"
KEYWORDS="~ia64 ~x86"
IUSE="doc"
DEPEND="virtual/python
>=sci-libs/netcdf-3.6.1
dev-python/numeric"
DOCS="CHANGES doc/pycdf.txt"
src_install() {
distutils_src_install
use doc && ( cp -R examples ${D}/usr/share/doc/${PF}
dohtml doc/pycdf.html )
}
|