Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Oct 2018 18:16:38 +0000 (UTC)
From:      Greg Lewis <glewis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r481470 - in head/java: . jdk10-doc
Message-ID:  <201810071816.w97IGc1Y042517@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glewis
Date: Sun Oct  7 18:16:38 2018
New Revision: 481470
URL: https://svnweb.freebsd.org/changeset/ports/481470

Log:
  . Add a doc port for JDK 10.

Added:
  head/java/jdk10-doc/
  head/java/jdk10-doc/Makefile   (contents, props changed)
  head/java/jdk10-doc/distinfo   (contents, props changed)
  head/java/jdk10-doc/pkg-descr   (contents, props changed)
Modified:
  head/java/Makefile

Modified: head/java/Makefile
==============================================================================
--- head/java/Makefile	Sun Oct  7 18:09:42 2018	(r481469)
+++ head/java/Makefile	Sun Oct  7 18:16:38 2018	(r481470)
@@ -71,6 +71,7 @@
     SUBDIR += jcommon
     SUBDIR += jd-gui
     SUBDIR += jdbcpool
+    SUBDIR += jdk10-doc
     SUBDIR += jdk8-doc
     SUBDIR += jdk9-doc
     SUBDIR += jdom

Added: head/java/jdk10-doc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/jdk10-doc/Makefile	Sun Oct  7 18:16:38 2018	(r481470)
@@ -0,0 +1,40 @@
+# $FreeBSD$
+
+PORTNAME=	jdk
+PORTVERSION=	${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION}
+CATEGORIES=	java devel
+MASTER_SITES=	#
+PKGNAMESUFFIX=	${JDK_VERSION}-doc
+DISTNAME=	jdk-${PORTVERSION}_doc-all
+
+MAINTAINER=	java@FreeBSD.org
+COMMENT=	Java Development Kit ${JDK_MAJOR_VER} Documentation
+
+DOCSDIR?=	${PREFIX}/share/doc/jdk${JDK_VERSION}
+RESTRICTED=	This documentation is under license and export control.
+
+WRKSRC=		${WRKDIR}/docs
+JDK_VERSION=		10
+JDK_UPDATE_VERSION=	0
+JDK_PATCH_VERSION=	2
+DOWNLOAD_URL=	http://www.oracle.com/technetwork/java/javase/downloads/index.html
+
+NO_BUILD=	yes
+USES=		zip
+PORTDOCS=	*
+
+OPTIONS_DEFINE=	DOCS
+
+.include <bsd.port.pre.mk>
+
+.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
+IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL} by selecting the "Download" link for the "Java SE 10 Documentation", place it in ${DISTDIR} and then run make again
+.endif
+
+do-install:
+	@${ECHO} -n ">> Installing documentation in ${DOCSDIR}..."
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	@(cd ${WRKSRC}/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}/)
+	@${ECHO} " [ DONE ]"
+
+.include <bsd.port.post.mk>

Added: head/java/jdk10-doc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/jdk10-doc/distinfo	Sun Oct  7 18:16:38 2018	(r481470)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1538930699
+SHA256 (jdk-10.0.2_doc-all.zip) = cb7b1703e9e1ef8adc2506672e5d6396df2d76a4f9f4dda8e4226b4ae52852a8
+SIZE (jdk-10.0.2_doc-all.zip) = 69312792

Added: head/java/jdk10-doc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/jdk10-doc/pkg-descr	Sun Oct  7 18:16:38 2018	(r481470)
@@ -0,0 +1,6 @@
+Java Development Kit 10 Documentation. Contains release information,
+API documentation, guides to new features and tool documentation.
+
+The documentation will be installed in ${PREFIX}/share/doc/jdk10/
+
+WWW: http://www.oracle.com/us/technologies/java/index.html



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810071816.w97IGc1Y042517>