Date: Tue, 15 May 2018 20:41:52 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470051 - head/math/ceres-solver Message-ID: <201805152041.w4FKfqve085322@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805152041.w4FKfqve085322>