blob: bb239fa8f7bc1d8d3a336298da0ad783ba064deb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycdf/pycdf-0.5.2.ebuild,v 1.2 2004/06/25 01:37:36 agriffis Exp $
inherit distutils
MY_P=${PN}-${PV:0:3}-${PV:4:1}
S=${WORKDIR}/${MY_P}
DESCRIPTION="The pycdf package wraps the complete functionality of the Unidata netcdf library..."
HOMEPAGE="ftp://nordet.qc.dfo-mpo.gc.ca/pub/soft/pycdf"
SRC_URI="ftp://nordet.qc.dfo-mpo.gc.ca/pub/soft/pycdf/${MY_P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="virtual/python
>=app-sci/netcdf-3.5.0-r3"
DOCS="CHANGES doc/pycdf.txt"
src_install() {
distutils_src_install
use doc && ( cp -R examples ${D}/usr/share/doc/${PF}
dohtml doc/pycdf.html )
}
|