svn commit: r465552 - head/math/ceres-solver

Jan Beich jbeich at FreeBSD.org
Mon Mar 26 01:03:30 UTC 2018


Author: jbeich
Date: Mon Mar 26 01:03:29 2018
New Revision: 465552
URL: https://svnweb.freebsd.org/changeset/ports/465552

Log:
  math/ceres-solver: request BLAS flavor via environment
  
  https://github.com/ceres-solver/ceres-solver/issues/355

Modified:
  head/math/ceres-solver/Makefile   (contents, props changed)

Modified: head/math/ceres-solver/Makefile
==============================================================================
--- head/math/ceres-solver/Makefile	Mon Mar 26 00:03:43 2018	(r465551)
+++ head/math/ceres-solver/Makefile	Mon Mar 26 01:03:29 2018	(r465552)
@@ -70,17 +70,17 @@ LAPACK_CMAKE_ON=	-DBLAS_LIBRARIES:FILEPATH="${BLASLIB}
 			-DLAPACK_LIBRARIES:FILEPATH="${LAPACKLIB}"
 LAPACK_CMAKE_BOOL=	LAPACK
 ATLAS_USES=		blaslapack:atlas
-ATLAS_CMAKE_ON=		-DBLA_VENDOR:STRING="ATLAS"
+ATLAS_MAKE_ENV=		BLA_VENDOR=ATLAS
 ATLAS_IMPLIES=		LAPACK
 GOTOBLAS_DESC=		Goto blas implementation
 GOTOBLAS_USES=		blaslapack:gotoblas
-GOTOBLAS_CMAKE_ON=	-DBLA_VENDOR:STRING="Goto"
+GOTOBLAS_MAKE_ENV=	BLA_VENDOR=Goto
 GOTOBLAS_IMPLIES=	LAPACK
 NETLIB_USES=		blaslapack:netlib
-NETLIB_CMAKE_ON=	-DBLA_VENDOR:STRING="Generic"
+NETLIB_MAKE_ENV=	BLA_VENDOR=Generic
 NETLIB_IMPLIES=		LAPACK
 OPENBLAS_USES=		blaslapack:openblas
-OPENBLAS_CMAKE_ON=	-DBLA_VENDOR:STRING="OpenBLAS"
+OPENBLAS_MAKE_ENV=	BLA_VENDOR=OpenBLAS
 OPENBLAS_IMPLIES=	LAPACK
 
 SPARSE_DESC=		Sparse linear algebra library


More information about the svn-ports-all mailing list