svn commit: r505812 - head/java/icedtea-web

Greg Lewis glewis at FreeBSD.org
Thu Jul 4 02:40:50 UTC 2019


Author: glewis
Date: Thu Jul  4 02:40:49 2019
New Revision: 505812
URL: https://svnweb.freebsd.org/changeset/ports/505812

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.

Modified:
  head/java/icedtea-web/Makefile

Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile	Thu Jul  4 02:28:17 2019	(r505811)
+++ head/java/icedtea-web/Makefile	Thu Jul  4 02:40:49 2019	(r505812)
@@ -81,7 +81,7 @@ JUNIT_JAR=	${JAVALIBDIR}/junit.jar
 
 .include <bsd.port.pre.mk>
 
-.if ${JAVA_PORT_VERSION} == "1.6.0"
+.if ${JAVA_PORT_VERSION:M*6*}
 pre-extract:
 	@${ECHO_MSG}
 	@${ECHO_MSG} "IMPORTANT: To build IcedTea-Web ${PORTVERSION}, you have to turn on 'ICEDTEA' option"


More information about the svn-ports-all mailing list