Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Nov 2019 15:27:20 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r518331 - in head/math: vtk6 vtk8
Message-ID:  <201911241527.xAOFRK6c054134@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sun Nov 24 15:27:19 2019
New Revision: 518331
URL: https://svnweb.freebsd.org/changeset/ports/518331

Log:
  math/vtk*: Canonicalize option names
  
  /!\ vtk6-6.2.0_9: Makefile warnings, please consider fixing /!\
  
  These options name have characters outside of [-_A-Z0-9]:
  
  Groups Wrapping

Modified:
  head/math/vtk6/Makefile
  head/math/vtk8/Makefile

Modified: head/math/vtk6/Makefile
==============================================================================
--- head/math/vtk6/Makefile	Sun Nov 24 15:17:15 2019	(r518330)
+++ head/math/vtk6/Makefile	Sun Nov 24 15:27:19 2019	(r518331)
@@ -47,9 +47,11 @@ OPTIONS_SUB=	yes
 #VTK_GROUPS=	Imaging MPI Qt Rendering StandAlone Views
 VTK_GROUPS=	MPI
 VTK_WRAPS=	JAVA TCLTK PYTHON
-OPTIONS_GROUP=	Groups Wrapping
-OPTIONS_GROUP_Groups=${VTK_GROUPS}
-OPTIONS_GROUP_Wrapping=${VTK_WRAPS}
+OPTIONS_GROUP=	GROUPS WRAPPING
+OPTIONS_GROUP_GROUPS=${VTK_GROUPS}
+OPTIONS_GROUP_WRAPPING=${VTK_WRAPS}
+GROUPS_DESC=	Groups
+WRAPPING_DESC=	Wrapping
 .for g in ${VTK_GROUPS}
 $g_DESC=	Build the $g group
 .endfor

Modified: head/math/vtk8/Makefile
==============================================================================
--- head/math/vtk8/Makefile	Sun Nov 24 15:17:15 2019	(r518330)
+++ head/math/vtk8/Makefile	Sun Nov 24 15:27:19 2019	(r518331)
@@ -49,9 +49,11 @@ OPTIONS_SUB=	yes
 #VTK_GROUPS=	Imaging MPI Qt Rendering StandAlone Views
 VTK_GROUPS=	MPI
 VTK_WRAPS=	JAVA TCLTK
-OPTIONS_GROUP=	Groups Wrapping
-OPTIONS_GROUP_Groups=${VTK_GROUPS}
-OPTIONS_GROUP_Wrapping=${VTK_WRAPS}
+OPTIONS_GROUP=	GROUPS WRAPPING
+OPTIONS_GROUP_GROUPS=${VTK_GROUPS}
+OPTIONS_GROUP_WRAPPING=${VTK_WRAPS}
+GROUPS_DESC=	Groups
+WRAPPING_DESC=	Wrapping
 .for g in ${VTK_GROUPS}
 $g_DESC=	Build the $g group
 .endfor



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911241527.xAOFRK6c054134>