From owner-svn-ports-all@FreeBSD.ORG Tue Jun 10 00:02:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EADB8314; Tue, 10 Jun 2014 00:02:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D83C620E3; Tue, 10 Jun 2014 00:02:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5A02WRL017833; Tue, 10 Jun 2014 00:02:32 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5A02W4x017819; Tue, 10 Jun 2014 00:02:32 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201406100002.s5A02W4x017819@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 10 Jun 2014 00:02:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357232 - in head/java: . jdk8-doc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2014 00:02:33 -0000 Author: jkim Date: Tue Jun 10 00:02:31 2014 New Revision: 357232 URL: http://svnweb.freebsd.org/changeset/ports/357232 QAT: https://qat.redports.org/buildarchive/r357232/ Log: Java Development Kit 8 Documentation. Contains release information, API documentation, guides to new features and tool documentation. The documentation will be installed in ${PREFIX}/share/doc/jdk8/ WWW: http://www.oracle.com/us/technologies/java/index.html Added: head/java/jdk8-doc/ head/java/jdk8-doc/Makefile (contents, props changed) head/java/jdk8-doc/distinfo (contents, props changed) head/java/jdk8-doc/pkg-descr (contents, props changed) Modified: head/java/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Tue Jun 10 00:01:35 2014 (r357231) +++ head/java/Makefile Tue Jun 10 00:02:31 2014 (r357232) @@ -95,6 +95,7 @@ SUBDIR += jdbcpool SUBDIR += jdk16-doc SUBDIR += jdk7-doc + SUBDIR += jdk8-doc SUBDIR += jdom SUBDIR += jflex SUBDIR += jfreechart Added: head/java/jdk8-doc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/jdk8-doc/Makefile Tue Jun 10 00:02:31 2014 (r357232) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= jdk +PORTVERSION= ${JDK_VERSION}.${JDK_UPDATE_VER} +CATEGORIES= java devel +MASTER_SITES= # +PKGNAMESUFFIX= ${JDK_VERSION}-doc +DISTNAME= jdk-${JDK_VERSION}u${JDK_UPDATE_VER}-apidocs + +MAINTAINER= java@FreeBSD.org +COMMENT= Java Development Kit ${JDK_MAJOR_VER} Documentation + +DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_VERSION} +NO_CDROM= License does not allow distribution with fee. +RESTRICTED= This documentation is under license and export control. + +WRKSRC= ${WRKDIR}/docs +JDK_VERSION= 8 +JDK_UPDATE_VER= 5 +DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html + +NO_BUILD= yes +USES= zip +PORTDOCS= * + +.include + +.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 8 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 Added: head/java/jdk8-doc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/jdk8-doc/distinfo Tue Jun 10 00:02:31 2014 (r357232) @@ -0,0 +1,2 @@ +SHA256 (jdk-8u5-apidocs.zip) = 89696b9d189066b08ef956345998bc12d0b5a6bea39f22000b7f374afe76f6fe +SIZE (jdk-8u5-apidocs.zip) = 88441146 Added: head/java/jdk8-doc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/jdk8-doc/pkg-descr Tue Jun 10 00:02:31 2014 (r357232) @@ -0,0 +1,6 @@ +Java Development Kit 8 Documentation. Contains release information, +API documentation, guides to new features and tool documentation. + +The documentation will be installed in ${PREFIX}/share/doc/jdk8/ + +WWW: http://www.oracle.com/us/technologies/java/index.html