svn commit: r518331 - in head/math: vtk6 vtk8

Tobias Kortkamp tobik at FreeBSD.org
Sun Nov 24 15:27:21 UTC 2019


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


More information about the svn-ports-all mailing list