svn commit: r513544 - head/math/superlu

Tobias Kortkamp tobik at FreeBSD.org
Wed Oct 2 05:03:23 UTC 2019


Author: tobik
Date: Wed Oct  2 05:03:22 2019
New Revision: 513544
URL: https://svnweb.freebsd.org/changeset/ports/513544

Log:
  math/superlu: Spell opt_CMAKE_ON correctly
  
  Unbreak ATLAS, GOTOBLAS, OPENBLAS, REFERENCE options.

Modified:
  head/math/superlu/Makefile

Modified: head/math/superlu/Makefile
==============================================================================
--- head/math/superlu/Makefile	Wed Oct  2 04:46:04 2019	(r513543)
+++ head/math/superlu/Makefile	Wed Oct  2 05:03:22 2019	(r513544)
@@ -3,7 +3,7 @@
 
 PORTNAME=	superlu
 PORTVERSION=	5.2.1
-PORTREVISION=	8
+PORTREVISION=	9
 CATEGORIES=	math
 MASTER_SITES=	http://crd-legacy.lbl.gov/~xiaoye/SuperLU/ \
 		http://crd-legacy.lbl.gov/~xiaoye/:doc
@@ -33,19 +33,19 @@ OPTIONS_SINGLE_BLAS=	ATLAS GOTOBLAS OPENBLAS REFERENCE
 OPTIONS_DEFAULT=	REFERENCE
 
 ATLAS_USES=		blaslapack:atlas
-ATLAS_CMAKE_ARGS=	-DBLA_VENDOR:STRING="ATLAS"
+ATLAS_CMAKE_ON=		-DBLA_VENDOR:STRING="ATLAS"
 DOCS_DISTFILES=		${DISTNAME}${EXTRACT_SUFX} \
 			${SLU_DOCS:S/$/:doc/}
 DOCS_EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
 GOTOBLAS_DESC=		GotoBLAS blas implementation
 GOTOBLAS_USES=		blaslapack:gotoblas
-GOTOBLAS_CMAKE_ARGS=	-DBLA_VENDOR:STRING="Goto"
+GOTOBLAS_CMAKE_ON=	-DBLA_VENDOR:STRING="Goto"
 OPENBLAS_DESC=		OpenBLAS blas implementation
 OPENBLAS_USES=		blaslapack:openblas
-OPENBLAS_CMAKE_ARGS=	-DBLA_VENDOR:STRING="OpenBLAS"
+OPENBLAS_CMAKE_ON=	-DBLA_VENDOR:STRING="OpenBLAS"
 REFERENCE_DESC=		Reference blas implementation
 REFERENCE_USES=		blaslapack
-REFERENCE_CMAKE_ARGS=	-DBLA_VENDOR:STRING="Generic"
+REFERENCE_CMAKE_ON=	-DBLA_VENDOR:STRING="Generic"
 
 SLU_DOCS=	SLU_general.ps.gz simax-29176.pdf
 


More information about the svn-ports-head mailing list