openbsd-ports/math/py-scipy/Makefile
eric d2387ab07a SciPy (pronounced "Sigh Pie") is open-source software for mathematics,
science, and engineering.  It includes modules for statistics,
optimization, integration, linear algebra, Fourier transforms, signal
and image processing, genetic algorithms, ODE solvers, and more.  It
is also the name of a very popular conference on scientific
programming with Python. 

The SciPy library depends on NumPy, which provides convenient and fast
N-dimensional array manipulation. The SciPy library is built to work
with NumPy arrays, and provides many user-friendly and efficient
numerical routines such as routines for numerical integration and
optimization. Together, they run on all popular operating systems, are
quick to install, and are free of charge. NumPy and SciPy are easy to
use, but powerful enough to be depended upon by some of the world's
leading scientists and engineers. If you need to manipulate numbers on
a computer and display or publish the results, give SciPy a try! 


ok ajacoutot@
2009-02-16 14:42:37 +00:00

40 lines
888 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2009/02/16 14:42:37 eric Exp $
COMMENT= maths, science and engineering modules for Python
MODPY_EGG_VERSION= 0.7.0
DISTNAME= scipy-${MODPY_EGG_VERSION}
PKGNAME= py-${DISTNAME}
CATEGORIES= math devel
MAINTAINER= Eric Faurot <eric@openbsd.org>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= blas g2c lapack m
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scipy/}
HOMEPAGE= http://numeric.scipy.org/
MODULES= lang/python
MODPY_SETUPTOOLS= Yes
MODPY_SETUP= setupegg.py
BUILD_DEPENDS= ::math/py-numpy
RUN_DEPENDS= ${BUILD_DEPENDS}
REGRESS_DEPENDS= ::devel/py-nose
MAKE_ENV+= LDSHARED="${CC} -shared -fPIC"
do-regress: fake
${MAKE_ENV} PYTHONPATH=${WRKINST}${MODPY_SITEPKG} ${MODPY_BIN} -c \
'import scipy ; scipy.test("full")'
.include <bsd.port.mk>