svn commit: r506250 - head/print/pdf-renderer

Greg Lewis glewis at FreeBSD.org
Mon Jul 8 20:19:11 UTC 2019


Author: glewis
Date: Mon Jul  8 20:19:09 2019
New Revision: 506250
URL: https://svnweb.freebsd.org/changeset/ports/506250

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:		238983
  Approved by:	ale (maintainer)

Modified:
  head/print/pdf-renderer/Makefile

Modified: head/print/pdf-renderer/Makefile
==============================================================================
--- head/print/pdf-renderer/Makefile	Mon Jul  8 20:11:38 2019	(r506249)
+++ head/print/pdf-renderer/Makefile	Mon Jul  8 20:19:09 2019	(r506250)
@@ -39,7 +39,7 @@ ALL_TARGET+=	javadoc
 
 .include <bsd.port.pre.mk>
 
-.if ${JAVA_PORT_VERSION:M1.8.*}
+.if ${JAVA_PORT_VERSION:M*8*}
 EXTRA_PATCHES+=	${PATCHDIR}/extra-patch-swinglabs-build-impl.xml
 .endif
 


More information about the svn-ports-head mailing list