Add a port of the documentation for JDK 12
This commit is contained in:
parent
5b258635a3
commit
9de6facd51
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=496523
4 changed files with 51 additions and 0 deletions
|
@ -73,6 +73,7 @@
|
|||
SUBDIR += jdk9-doc
|
||||
SUBDIR += jdk10-doc
|
||||
SUBDIR += jdk11-doc
|
||||
SUBDIR += jdk12-doc
|
||||
SUBDIR += jdom
|
||||
SUBDIR += jflex
|
||||
SUBDIR += jfreechart
|
||||
|
|
41
java/jdk12-doc/Makefile
Normal file
41
java/jdk12-doc/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jdk
|
||||
PORTVERSION= ${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION}
|
||||
CATEGORIES= java devel
|
||||
MASTER_SITES= #
|
||||
PKGNAMESUFFIX= ${JDK_VERSION}-doc
|
||||
DISTNAME= jdk-${JDK_VERSION}_doc-all
|
||||
|
||||
MAINTAINER= java@FreeBSD.org
|
||||
COMMENT= Java Development Kit ${JDK_VERSION} Documentation
|
||||
|
||||
USES= zip
|
||||
|
||||
DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_VERSION}
|
||||
RESTRICTED= This documentation is under license and export control.
|
||||
|
||||
WRKSRC= ${WRKDIR}/docs
|
||||
JDK_VERSION= 12
|
||||
JDK_UPDATE_VERSION= 0
|
||||
JDK_PATCH_VERSION= 0
|
||||
DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html
|
||||
|
||||
NO_BUILD= yes
|
||||
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 12 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>
|
3
java/jdk12-doc/distinfo
Normal file
3
java/jdk12-doc/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1553218445
|
||||
SHA256 (jdk-12_doc-all.zip) = a14eaa08517bf369e7c72a829ff8dbfd42c29167d41fdcd2057cdaccf661c370
|
||||
SIZE (jdk-12_doc-all.zip) = 51055050
|
6
java/jdk12-doc/pkg-descr
Normal file
6
java/jdk12-doc/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
Java Development Kit 11 Documentation. Contains release information,
|
||||
API documentation, guides to new features and tool documentation.
|
||||
|
||||
The documentation will be installed in ${PREFIX}/share/doc/jdk12/
|
||||
|
||||
WWW: https://www.oracle.com/us/technologies/java/index.html
|
Loading…
Reference in a new issue