Move jdk-doc into jdk11-doc and add new jdk{12,13,14}-doc ports.

PR:		28183
Submitted by:	Ernst de Haan <ernst@jollem.com>
Repo-copy by:	jdp
This commit is contained in:
Maxim Sobolev 2001-10-08 09:17:17 +00:00
parent 77461057bf
commit 4c6ba8c8e6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=48555
25 changed files with 22503 additions and 5600 deletions

View file

@ -21,7 +21,10 @@
SUBDIR += jce-aba
SUBDIR += jdbcpool
SUBDIR += jdk
SUBDIR += jdk-doc
SUBDIR += jdk11-doc
SUBDIR += jdk12-doc
SUBDIR += jdk13-doc
SUBDIR += jdk14-doc
SUBDIR += jdk-tutorial
SUBDIR += jdk12-beta
SUBDIR += jdk13

View file

@ -1,41 +0,0 @@
# New ports collection makefile for: JDK documentation
# Date created: Mon Mar 8 10:10:42 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
#
# $FreeBSD$
#
PORTNAME= jdk-doc
PORTVERSION= 1.1.8
CATEGORIES= java
MASTER_SITES= #
DISTNAME= jdk-1_1_8_003-doc
MAINTAINER= ernst@jollem.com
NO_CDROM= "License does not allow distribution with fee."
RESTRICTED= "This software is under license and export control."
.if defined(BATCH) || defined(PACKAGE_BUILDING)
IGNORE= "You cannot legally distribute packages"
.endif
PLIST_SUB+= JDK_HOME=${JDK_HOME:S/^${PREFIX}\///}
JDK_HOME?= ${PREFIX}/jdk${PORTVERSION}
WRKSRC= ${WRKDIR}/jdk${PORTVERSION}
NO_BUILD= yes
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from http://java.sun.com/jdk/1.1/docs.html, place it in ${DISTDIR} and then run make again
.endif
do-install:
${MKDIR} ${PREFIX}/jdk${PORTVERSION}
${CP} -R ${WRKSRC}/docs ${PREFIX}/jdk${PORTVERSION}/
@${SED} "/%%JDK_HOME%%/s//${JDK_HOME:S/\//\\\//g}/" < ${PKGMESSAGE}
.include <bsd.port.post.mk>

View file

@ -1 +0,0 @@
MD5 (jdk-1_1_8_003-doc.tar.gz) = 973c6b5d57eb327ea921b657c32e859a

View file

@ -1 +0,0 @@
Java Development Kit 1.1 Documentation

View file

@ -1,7 +0,0 @@
Documentation for Sun's Java Development Kit (JDK) version 1.1. It contains
release information, API documentation, guides to new features and tool
documentation.
The documentation will be installed in ${PREFIX}/jdk1.1.8/docs/.
WWW: http://www.freebsd.org/java/

View file

@ -1,13 +0,0 @@
Here are some useful bookmark entries for your Web browser:
JDK 1.1.8 Documentation:
file:%%JDK_HOME%%/docs/index.html
JDK 1.1 Package Index:
file:%%JDK_HOME%%/docs/api/packages.html
JDK 1.1 Class Hierarchy:
file:%%JDK_HOME%%/docs/api/tree.html
JDK 1.1 Index:
file:%%JDK_HOME%%/docs/api/a-names.html

File diff suppressed because it is too large Load diff

View file

@ -6,10 +6,10 @@
#
PORTNAME= jdk-doc
PORTVERSION= 1.1.8
PORTVERSION= ${JDK_VERSION:S/_/./g}
CATEGORIES= java
MASTER_SITES= #
DISTNAME= jdk-1_1_8_003-doc
DISTNAME= jdk-${JDK_VERSION:S/./_/g}-doc
MAINTAINER= ernst@jollem.com
@ -20,22 +20,24 @@ RESTRICTED= "This software is under license and export control."
IGNORE= "You cannot legally distribute packages"
.endif
PLIST_SUB+= JDK_HOME=${JDK_HOME:S/^${PREFIX}\///}
JDK_HOME?= ${PREFIX}/jdk${PORTVERSION}
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
TARGET_DIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
WRKSRC= ${WRKDIR}/jdk${PORTVERSION}
WRKSRC= ${WRKDIR}/jdk${JDK_VERSION:C/_.*\$//g}/docs
JDK_VERSION= 1.1.8_003
JDK_MAJOR_VER= ${JDK_VERSION:R}
DOWNLOAD_URL= http://java.sun.com/jdk/${JDK_MAJOR_VER}/download-docs.html
NO_BUILD= yes
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from http://java.sun.com/jdk/1.1/docs.html, place it in ${DISTDIR} and then run make again
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
do-install:
${MKDIR} ${PREFIX}/jdk${PORTVERSION}
${CP} -R ${WRKSRC}/docs ${PREFIX}/jdk${PORTVERSION}/
@${SED} "/%%JDK_HOME%%/s//${JDK_HOME:S/\//\\\//g}/" < ${PKGMESSAGE}
${MKDIR} ${TARGET_DIR}
${CP} -r ${WRKSRC}/* ${TARGET_DIR}
.include <bsd.port.post.mk>

View file

@ -1,7 +1,6 @@
Documentation for Sun's Java Development Kit (JDK) version 1.1. It contains
release information, API documentation, guides to new features and tool
documentation.
Java Development Kit 1.1 Documentation. Contains release information,
API documentation, guides to new features and tool documentation.
The documentation will be installed in ${PREFIX}/jdk1.1.8/docs/.
The documentation will be installed in ${PREFIX}/share/doc/jdk1.1/
WWW: http://www.freebsd.org/java/
WWW: http://java.sun.com/jdk/1.1/docs/

File diff suppressed because it is too large Load diff

View file

@ -1,15 +1,15 @@
# New ports collection makefile for: JDK documentation
# Date created: Mon Mar 8 10:10:42 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
# New ports collection makefile for: jdk-doc-1.2
# Date created: June 1, 2001
# Whom: Ernst de Haan <ernst@jollem.com>
#
# $FreeBSD$
#
PORTNAME= jdk-doc
PORTVERSION= 1.1.8
PORTVERSION= ${JDK_VERSION:S/_/./g}
CATEGORIES= java
MASTER_SITES= #
DISTNAME= jdk-1_1_8_003-doc
DISTNAME= jdk-${JDK_VERSION:S/./_/g}-doc
MAINTAINER= ernst@jollem.com
@ -20,22 +20,24 @@ RESTRICTED= "This software is under license and export control."
IGNORE= "You cannot legally distribute packages"
.endif
PLIST_SUB+= JDK_HOME=${JDK_HOME:S/^${PREFIX}\///}
JDK_HOME?= ${PREFIX}/jdk${PORTVERSION}
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
TARGET_DIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
WRKSRC= ${WRKDIR}/jdk${PORTVERSION}
WRKSRC= ${WRKDIR}/jdk${JDK_VERSION:C/_.*\$//g}/docs
JDK_VERSION= 1.2.2_006
JDK_MAJOR_VER= ${JDK_VERSION:R}
DOWNLOAD_URL= http://java.sun.com/jdk/${JDK_MAJOR_VER}/download-docs.html
NO_BUILD= yes
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from http://java.sun.com/jdk/1.1/docs.html, place it in ${DISTDIR} and then run make again
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
do-install:
${MKDIR} ${PREFIX}/jdk${PORTVERSION}
${CP} -R ${WRKSRC}/docs ${PREFIX}/jdk${PORTVERSION}/
@${SED} "/%%JDK_HOME%%/s//${JDK_HOME:S/\//\\\//g}/" < ${PKGMESSAGE}
${MKDIR} ${TARGET_DIR}
${CP} -r ${WRKSRC}/* ${TARGET_DIR}
.include <bsd.port.post.mk>

View file

@ -1 +1 @@
MD5 (jdk-1_1_8_003-doc.tar.gz) = 973c6b5d57eb327ea921b657c32e859a
MD5 (jdk-1_2_2_006-doc.tar.gz) = 85068cef11c635fc7decc8de84413a41

View file

@ -1 +1 @@
Java Development Kit 1.1 Documentation
Java Development Kit 1.2 Documentation

View file

@ -1,7 +1,6 @@
Documentation for Sun's Java Development Kit (JDK) version 1.1. It contains
release information, API documentation, guides to new features and tool
documentation.
Java Development Kit 1.2 Documentation. Contains release information,
API documentation, guides to new features and tool documentation.
The documentation will be installed in ${PREFIX}/jdk1.1.8/docs/.
The documentation will be installed in ${PREFIX}/share/doc/jdk1.2/.
WWW: http://www.freebsd.org/java/
WWW: http://java.sun.com/jdk/1.2/docs/

File diff suppressed because it is too large Load diff

View file

@ -1,15 +1,15 @@
# New ports collection makefile for: JDK documentation
# Date created: Mon Mar 8 10:10:42 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
# New ports collection makefile for: jdk-doc-1.3
# Date created: June 1, 2001
# Whom: Ernst de Haan <ernst@jollem.com>
#
# $FreeBSD$
#
PORTNAME= jdk-doc
PORTVERSION= 1.1.8
PORTVERSION= ${JDK_VERSION:S/_/./g}
CATEGORIES= java
MASTER_SITES= #
DISTNAME= jdk-1_1_8_003-doc
DISTNAME= j2sdk-${JDK_VERSION:S/./_/g}-doc
MAINTAINER= ernst@jollem.com
@ -20,22 +20,25 @@ RESTRICTED= "This software is under license and export control."
IGNORE= "You cannot legally distribute packages"
.endif
PLIST_SUB+= JDK_HOME=${JDK_HOME:S/^${PREFIX}\///}
JDK_HOME?= ${PREFIX}/jdk${PORTVERSION}
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
TARGET_DIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
WRKSRC= ${WRKDIR}/jdk${PORTVERSION}
WRKSRC= ${WRKDIR}/docs
JDK_VERSION= 1.3.1
JDK_MAJOR_VER= ${JDK_VERSION:R}
DOWNLOAD_URL= http://java.sun.com/j2se/${JDK_MAJOR_VER}/docs.html\#Download
NO_BUILD= yes
USE_ZIP= yes
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from http://java.sun.com/jdk/1.1/docs.html, place it in ${DISTDIR} and then run make again
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
do-install:
${MKDIR} ${PREFIX}/jdk${PORTVERSION}
${CP} -R ${WRKSRC}/docs ${PREFIX}/jdk${PORTVERSION}/
@${SED} "/%%JDK_HOME%%/s//${JDK_HOME:S/\//\\\//g}/" < ${PKGMESSAGE}
${MKDIR} ${TARGET_DIR}
${CP} -r ${WRKSRC}/* ${TARGET_DIR}
.include <bsd.port.post.mk>

View file

@ -1 +1 @@
MD5 (jdk-1_1_8_003-doc.tar.gz) = 973c6b5d57eb327ea921b657c32e859a
MD5 (j2sdk-1_3_1-doc.zip) = 0362c571b7b2f4e4d3c627e37a757ad5

View file

@ -1 +1 @@
Java Development Kit 1.1 Documentation
Java Development Kit 1.3 Documentation

View file

@ -1,7 +1,6 @@
Documentation for Sun's Java Development Kit (JDK) version 1.1. It contains
release information, API documentation, guides to new features and tool
documentation.
Java Development Kit 1.3 Documentation. Contains release information,
API documentation, guides to new features and tool documentation.
The documentation will be installed in ${PREFIX}/jdk1.1.8/docs/.
The documentation will be installed in ${PREFIX}/share/doc/jdk1.3/
WWW: http://www.freebsd.org/java/
WWW: http://java.sun.com/j2se/1.3/docs/

File diff suppressed because it is too large Load diff

View file

@ -1,15 +1,15 @@
# New ports collection makefile for: JDK documentation
# Date created: Mon Mar 8 10:10:42 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
# New ports collection makefile for: jdk-doc-1.4
# Date created: June 1, 2001
# Whom: Ernst de Haan <ernst@jollem.com>
#
# $FreeBSD$
#
PORTNAME= jdk-doc
PORTVERSION= 1.1.8
PORTVERSION= ${JDK_VERSION:S/_/./g:S/-beta/b1/}
CATEGORIES= java
MASTER_SITES= #
DISTNAME= jdk-1_1_8_003-doc
DISTNAME= j2sdk-${JDK_VERSION:S/./_/g}-doc
MAINTAINER= ernst@jollem.com
@ -20,22 +20,25 @@ RESTRICTED= "This software is under license and export control."
IGNORE= "You cannot legally distribute packages"
.endif
PLIST_SUB+= JDK_HOME=${JDK_HOME:S/^${PREFIX}\///}
JDK_HOME?= ${PREFIX}/jdk${PORTVERSION}
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
TARGET_DIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
WRKSRC= ${WRKDIR}/jdk${PORTVERSION}
WRKSRC= ${WRKDIR}/docs
JDK_VERSION= 1.4.0-beta
JDK_MAJOR_VER= ${JDK_VERSION:R}
DOWNLOAD_URL= http://java.sun.com/j2se/${JDK_MAJOR_VER}/\#download
NO_BUILD= yes
USE_ZIP= yes
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from http://java.sun.com/jdk/1.1/docs.html, place it in ${DISTDIR} and then run make again
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
do-install:
${MKDIR} ${PREFIX}/jdk${PORTVERSION}
${CP} -R ${WRKSRC}/docs ${PREFIX}/jdk${PORTVERSION}/
@${SED} "/%%JDK_HOME%%/s//${JDK_HOME:S/\//\\\//g}/" < ${PKGMESSAGE}
${MKDIR} ${TARGET_DIR}
${CP} -r ${WRKSRC}/* ${TARGET_DIR}
.include <bsd.port.post.mk>

View file

@ -1 +1 @@
MD5 (jdk-1_1_8_003-doc.tar.gz) = 973c6b5d57eb327ea921b657c32e859a
MD5 (j2sdk-1_4_0-beta-doc.zip) = d4f47442cab389a8a6601615528b7e25

View file

@ -1 +1 @@
Java Development Kit 1.1 Documentation
Java Development Kit 1.4 Documentation

View file

@ -1,7 +1,6 @@
Documentation for Sun's Java Development Kit (JDK) version 1.1. It contains
release information, API documentation, guides to new features and tool
documentation.
Java Development Kit 1.4 Documentation. Contains release information,
API documentation, guides to new features and tool documentation.
The documentation will be installed in ${PREFIX}/jdk1.1.8/docs/.
The documentation will be installed in ${PREFIX}/share/doc/jdk1.4/
WWW: http://www.freebsd.org/java/
WWW: http://java.sun.com/j2se/1.4/docs/

File diff suppressed because it is too large Load diff