diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-09-02 02:14:17 +0800 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-09-02 02:14:17 +0800 |
commit | ecf737426d404ed57f613611b5c2aa55aea8f302 (patch) | |
tree | d8e7406c6f70d1706b6cffe4a3364655515eb2ca /math/py-numpy/files | |
parent | 90b46110112c0931aeeea40db16abc4138a9f7ad (diff) | |
download | freebsd-ports-gnome-ecf737426d404ed57f613611b5c2aa55aea8f302.tar.gz freebsd-ports-gnome-ecf737426d404ed57f613611b5c2aa55aea8f302.tar.zst freebsd-ports-gnome-ecf737426d404ed57f613611b5c2aa55aea8f302.zip |
The fundamental package needed for scientific computing with Python is
called NumPy. This package contains:
* a powerful N-dimensional array object
* sophisticated (broadcasting) functions
* basic linear algebra functions
* basic Fourier transforms
* sophisticated random number capabilities
* tools for integrating Fortran code.
NumPy derives from the old Numeric code base and can be used as a
replacement for Numeric. It also adds the features introduced by numarray
and can also be used to replace numarray.
Note: Development for Numeric has ceased, and users should transisition to
NumPy as quickly as possible.
WWW: http://numpy.scipy.org/
PR: ports/102458
Submitted by: Tony Maher <anthony.maher@uts.edu.au>
Diffstat (limited to 'math/py-numpy/files')
-rw-r--r-- | math/py-numpy/files/patch-system_info.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/py-numpy/files/patch-system_info.py b/math/py-numpy/files/patch-system_info.py new file mode 100644 index 000000000000..8e0eb1361b68 --- /dev/null +++ b/math/py-numpy/files/patch-system_info.py @@ -0,0 +1,11 @@ +--- numpy/distutils/system_info.py.orig Thu Jul 27 19:44:41 2006 ++++ numpy/distutils/system_info.py Thu Jul 27 19:39:18 2006 +@@ -811,7 +811,7 @@ + dir_env_var = 'ATLAS' + _lib_names = ['f77blas','cblas'] + if sys.platform[:7]=='freebsd': +- _lib_atlas = ['atlas_r'] ++ _lib_atlas = ['atlas_r', 'g2c'] + _lib_lapack = ['alapack_r'] + else: + _lib_atlas = ['atlas'] |