blob: 9bf3c979ff8a30a2397cfa3a9e16b96c5062b578 (
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-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Tod M. Neidt <tneidt@fidnet.com>
# /home/cvsroot/gentoo-x86/dev-python/numerical-python/Numeric-19.0.0.ebuild,v 1.4 2001/06/04 21:57:52 achim Exp
# $Header: /var/cvsroot/gentoo-x86/dev-python/Numeric/Numeric-19.0.0.ebuild,v 1.2 2001/08/30 17:31:35 pm Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="numerical python module"
SRC_URI="http://prdownloads.sourceforge.net/numpy/"${A}
HOMEPAGE="http://www.pfdubois.com/numpy/"
DEPEND="virtual/python"
PYTHON_VERSION=
src_compile() {
cd ${S}
try python setup_all.py build
}
src_install() {
cd ${S}
try python setup_all.py install --prefix=${D}/usr
dodoc MANIFEST
dodoc PKG-INFO
dodoc README*
#need to automate the python version in the path
mv Demo/NumTut ${D}/usr/lib/python2.0/site-packages/
}
|