svn commit: r506198 - head/math/scilab

Greg Lewis glewis at FreeBSD.org
Sun Jul 7 23:13:22 UTC 2019


Author: glewis
Date: Sun Jul  7 23:13:20 2019
New Revision: 506198
URL: https://svnweb.freebsd.org/changeset/ports/506198

Log:
  Adjust to proposed changes in Java versioning
  
  * Bug #238758 proposes to change the Java versioning from versions such
    as "1.6.0" to versions such as "6" (for example).  Modify the Makefile
    checks on JAVA_PORT_VERSION to cope with either format.
  
  PR:		238982
  Approved by:	makc (maintainer)

Modified:
  head/math/scilab/Makefile

Modified: head/math/scilab/Makefile
==============================================================================
--- head/math/scilab/Makefile	Sun Jul  7 22:33:00 2019	(r506197)
+++ head/math/scilab/Makefile	Sun Jul  7 23:13:20 2019	(r506198)
@@ -130,7 +130,7 @@ CONFIGURE_ARGS+=	--without-openmp
 
 .include <bsd.port.pre.mk>
 
-.if ${PORT_OPTIONS:MGUI} && ${JAVA_PORT_VERSION:M1.8.*}
+.if ${PORT_OPTIONS:MGUI} && ${JAVA_PORT_VERSION:M*8*}
 EXTRA_PATCHES+=	${PATCHDIR}/extra-patch-Makefile.in
 .endif
 


More information about the svn-ports-all mailing list