svn commit: r470051 - head/math/ceres-solver
Jan Beich
jbeich at FreeBSD.org
Tue May 15 20:41:53 UTC 2018
Author: jbeich
Date: Tue May 15 20:41:52 2018
New Revision: 470051
URL: https://svnweb.freebsd.org/changeset/ports/470051
Log:
math/ceres-solver: unbreak NETLIB=on by backing out r465552
-- Found BLAS: /usr/local/lib/libopenblas.so
-- Found LAPACK library: /usr/local/lib/libopenblas.so;/usr/local/lib/libopenblas.so
Pointy hat to: jbeich
Modified:
head/math/ceres-solver/Makefile (contents, props changed)
Modified: head/math/ceres-solver/Makefile
==============================================================================
--- head/math/ceres-solver/Makefile Tue May 15 20:24:40 2018 (r470050)
+++ head/math/ceres-solver/Makefile Tue May 15 20:41:52 2018 (r470051)
@@ -2,7 +2,7 @@
PORTNAME= ceres-solver
DISTVERSION= 1.14.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= math
MAINTAINER= jbeich at FreeBSD.org
@@ -71,18 +71,18 @@ LAPACK_DESC= Linear Algebra PACKage
LAPACK_USES= fortran # LDFLAGS
LAPACK_CMAKE_BOOL= LAPACK
ATLAS_USES= blaslapack:atlas
-ATLAS_MAKE_ENV= BLA_VENDOR=ATLAS
-ATLAS_CMAKE_ON= -DLAPACK_LIBRARIES:STRING=alapack
+ATLAS_CMAKE_ON= -DBLA_VENDOR:STRING="ATLAS" \
+ -DLAPACK_LIBRARIES:STRING=alapack
ATLAS_IMPLIES= LAPACK
GOTOBLAS_DESC= Goto blas implementation
GOTOBLAS_USES= blaslapack:gotoblas
-GOTOBLAS_MAKE_ENV= BLA_VENDOR=Goto
+GOTOBLAS_CMAKE_ON= -DBLA_VENDOR:STRING="Goto"
GOTOBLAS_IMPLIES= LAPACK
NETLIB_USES= blaslapack:netlib
-NETLIB_MAKE_ENV= BLA_VENDOR=Generic
+NETLIB_CMAKE_ON= -DBLA_VENDOR:STRING="Generic"
NETLIB_IMPLIES= LAPACK
OPENBLAS_USES= blaslapack:openblas
-OPENBLAS_MAKE_ENV= BLA_VENDOR=OpenBLAS
+OPENBLAS_CMAKE_ON= -DBLA_VENDOR:STRING="OpenBLAS"
OPENBLAS_IMPLIES= LAPACK
SPARSE_DESC= Sparse linear algebra library
More information about the svn-ports-all
mailing list