blob: 48574f7d1d731ee6e38513c5b20f5b8560f63a4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /home/cvsroot/gentoo-x86/dev-python/scientific--python/ScientificPython-2.2.ebuild,v 1.4 2001/06/04 21:57:52 achim Exp
# $Header: /var/cvsroot/gentoo-x86/dev-python/ScientificPython/ScientificPython-2.2.ebuild,v 1.6 2002/07/11 06:30:24 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="scientific python module"
SRC_URI="http://starship.python.net/crew/hinsen/${P}.tar.gz"
HOMEPAGE="http://starship.python.net/crew/hinsen/scientific.html"
DEPEND=">=dev-lang/python-2.0-r4
>=dev-python/Numeric-19.0
>=app-sci/netcdf-3.0"
src_compile() {
python setup.py build || die
}
src_install() {
python setup.py install --prefix=${D}/usr || die
dodoc MANIFEST.in COPYRIGHT README*
}
|