mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
1cd277bdce
GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
37 lines
877 B
Makefile
37 lines
877 B
Makefile
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= scikit-learn
|
|
PORTVERSION= 0.14.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= science python
|
|
MASTER_SITES= ${MASTER_SITE_CHEESESHOP}
|
|
MASTER_SITE_SUBDIR=source/s/scikit-learn
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= Machine learning algorithms for python
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
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
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|