mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
98eb11b2f0
Changes: http://www.boost.org/users/history/version_1_65_1.html PR: 218835 Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month) Tested by: jhibbits (on powerpc64, earlier version) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582
38 lines
805 B
Makefile
38 lines
805 B
Makefile
# Created by: Johannes Dieterich <dieterich@ogolem.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= clblas
|
|
PORTVERSION= 2.10
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 5
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= dieterich@ogolem.org
|
|
COMMENT= Software library containing BLAS functions written in OpenCL
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= opencl>=0:devel/opencl
|
|
LIB_DEPENDS= libOpenCL.so:devel/ocl-icd \
|
|
libboost_program_options.so:devel/boost-libs
|
|
RUN_DEPENDS= opencl>=0:devel/opencl
|
|
|
|
BROKEN_powerpc64= fails to compile: xgemm.cc: error: extra ';'
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= clMathLibraries
|
|
GH_PROJECT= clBLAS
|
|
|
|
USE_LDCONFIG= yes
|
|
USES= cmake python
|
|
|
|
CMAKE_ARGS+= -DBUILD_TEST=OFF \
|
|
-DBUILD_KTEST=OFF \
|
|
-DCORR_TEST_WITH_ACML=OFF \
|
|
-DSUFFIX_LIB=""
|
|
|
|
CMAKE_SOURCE_PATH= ${WRKSRC}/src
|
|
|
|
.include <bsd.port.mk>
|