diff options
author | demon <demon@FreeBSD.org> | 2014-02-18 16:30:53 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2014-02-18 16:30:53 +0800 |
commit | 2a51ca55fa85d51b497325dc7c921cf875bbe9e9 (patch) | |
tree | 78aea9424e35e3dea1520cc0d6904cd5e8e2ffb9 /science/py-scikit-learn | |
parent | 1820fe07b3af7a9157f5a2d99ced7e8cc422dd09 (diff) | |
download | freebsd-ports-gnome-2a51ca55fa85d51b497325dc7c921cf875bbe9e9.tar.gz freebsd-ports-gnome-2a51ca55fa85d51b497325dc7c921cf875bbe9e9.tar.zst freebsd-ports-gnome-2a51ca55fa85d51b497325dc7c921cf875bbe9e9.zip |
Allow to choose between cblas and atlas ports.
Submitted by: glebius
Diffstat (limited to 'science/py-scikit-learn')
-rw-r--r-- | science/py-scikit-learn/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/science/py-scikit-learn/Makefile b/science/py-scikit-learn/Makefile index 43fa8cb3bb46..2b36a0ed4022 100644 --- a/science/py-scikit-learn/Makefile +++ b/science/py-scikit-learn/Makefile @@ -12,11 +12,20 @@ MAINTAINER= demon@FreeBSD.org COMMENT= Machine learning algorithms for python BUILD_DEPENDS= ${PYNUMPY} -LIB_DEPENDS= libcblas.so:${PORTSDIR}/math/cblas RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}scipy>0.8.0:${PORTSDIR}/science/py-scipy USES= fortran + +OPTIONS_SINGLE= BLAS +OPTIONS_SINGLE_BLAS= CBLAS ATLAS +OPTIONS_DEFAULT= CBLAS +CBLAS_DESC= Use math/cblas as BLAS library +ATLAS_DESC= Use math/atlas as BLAS library + +CBLAS_LIB_DEPENDS= libcblas.so:${PORTSDIR}/math/cblas +ATLAS_LIB_DEPENDS= libcblas.so:${PORTSDIR}/math/atlas + LATEST_LINK= py-${PORTNAME} USE_PYTHON= yes |