blob: b8a93acbe68ed7c059f32d95a5306c6a7afb8b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Created by: Greg Lewis <glewis@FreeBSD.org>
# $FreeBSD$
PORTNAME= jdk-doc
PORTVERSION= ${JDK_VERSION}.${JDK_UPDATE_VER}
CATEGORIES= java
MASTER_SITES= #
DISTNAME= jdk-6u30-apidocs
MAINTAINER= java@FreeBSD.org
COMMENT= Java Development Kit ${JDK_MAJOR_VER} Documentation
LATEST_LINK= jdk${JDK_CONCAT_VER}-doc
DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
NO_CDROM= License does not allow distribution with fee.
RESTRICTED= This documentation is under license and export control.
.if defined(NOPORTDOCS)
IGNORE= port only installs documentation
.endif
WRKSRC= ${WRKDIR}/docs
JDK_VERSION= 1.6.0
JDK_MAJOR_VER= ${JDK_VERSION:R}
JDK_CONCAT_VER= ${JDK_MAJOR_VER:S/.//g}
JDK_UPDATE_VER= 30
DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html
NO_BUILD= yes
USE_ZIP= yes
PORTDOCS= *
.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 6 Documentation", place it in ${DISTDIR} and then run make again
.endif
do-install:
@${ECHO} -n ">> Installing documentation in ${DOCSDIR}..."
@${MKDIR} ${DOCSDIR}
@(cd ${WRKSRC}/ && ${COPYTREE_SHARE} \* ${DOCSDIR}/)
@${ECHO} " [ DONE ]"
.include <bsd.port.post.mk>
|