blob: 9d2d87f6b838d03a4e1421e1b1e1f2c8b8405191 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.2-r1.ebuild,v 1.2 2004/12/28 19:07:40 ribosome Exp $
MY_P=${P/scientificpython/ScientificPython}
S=${WORKDIR}/${MY_P}
inherit distutils
IUSE=""
DESCRIPTION="Scientific Module for Python"
SRC_URI="http://starship.python.net/crew/hinsen/${MY_P}.tar.gz"
HOMEPAGE="http://starship.python.net/crew/hinsen/scientific.html"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ~sparc alpha"
DEPEND="virtual/python
>=dev-python/numeric-19.0
>=sci-libs/netcdf-3.0"
src_install() {
distutils_src_install
dodoc MANIFEST.in COPYRIGHT README*
cd Doc
dodoc CHANGELOG
dohtml HTML/*
dodir /usr/share/doc/${PF}/pdf
insinto /usr/share/doc/${PF}/pdf
doins PDF/*
}
|