svn commit: r514683 - head/java/openjdk12

Greg Lewis glewis at FreeBSD.org
Thu Oct 17 20:38:39 UTC 2019


Author: glewis
Date: Thu Oct 17 20:38:38 2019
New Revision: 514683
URL: https://svnweb.freebsd.org/changeset/ports/514683

Log:
  Fix internal versioning
  
  * Set the Java version correctly
  * Bump PORTREVISION since some software may rely on this

Modified:
  head/java/openjdk12/Makefile

Modified: head/java/openjdk12/Makefile
==============================================================================
--- head/java/openjdk12/Makefile	Thu Oct 17 20:20:30 2019	(r514682)
+++ head/java/openjdk12/Makefile	Thu Oct 17 20:38:38 2019	(r514683)
@@ -3,6 +3,7 @@
 PORTNAME=	openjdk
 DISTVERSIONPREFIX=	jdk-
 DISTVERSION=	${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION}
+PORTREVISION=	1
 CATEGORIES=	java devel
 PKGNAMESUFFIX?=	${JDK_MAJOR_VERSION}
 
@@ -82,7 +83,7 @@ CONFIGURE_ARGS=	--with-boot-jdk=${BOOTSTRAPJDKDIR} \
 		--x-includes=${LOCALBASE}/include \
 		--x-libraries=${LOCALBASE}/lib \
 		--with-cacerts-file=${FILESDIR}/cacerts \
-		--with-version-string=${JDK_MAJOR_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} \
+		--with-version-string=${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} \
 		--with-native-debug-symbols=none \
 		--with-debug-level=release
 


More information about the svn-ports-head mailing list