diff options
author | glewis <glewis@FreeBSD.org> | 2002-10-17 16:30:53 +0000 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2002-10-17 16:30:53 +0000 |
commit | 041a9ae35834a7b93aad013d97dd091559859bfd (patch) | |
tree | 4cc72a6f3b26ae26dda7d07b6c236b80f74c71b2 /java/jdk13/Makefile | |
parent | 3052df75d1280b7ffc62eccf5cf99d1933a0de65 (diff) | |
download | FreeBSD-ports-041a9ae35834a7b93aad013d97dd091559859bfd.zip FreeBSD-ports-041a9ae35834a7b93aad013d97dd091559859bfd.tar.gz |
. Make the instructions for downloading the various source bits clearer.
The instructions are based on text submitted in the PR (by grog).
PR: 42942
Diffstat (limited to 'java/jdk13/Makefile')
-rw-r--r-- | java/jdk13/Makefile | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/java/jdk13/Makefile b/java/jdk13/Makefile index 27b6fac..f3d46f4 100644 --- a/java/jdk13/Makefile +++ b/java/jdk13/Makefile @@ -10,8 +10,9 @@ PORTVERSION= ${JDK_VERSION}p${JDK_PATCHSET_VERSION} CATEGORIES= java devel MASTER_SITES= # http://www.sun.com/software/java2/download.html # http://www.eyesbeyond.com/freebsddom/java/jdk13.html -DISTFILES= j2sdk-${JDK_VERSION:S/./_/g}-src${EXTRACT_SUFX} \ - bsd-jdk131-patches-${JDK_PATCHSET_VERSION}.tar.gz +SRCFILE= j2sdk-${JDK_VERSION:S/./_/g}-src${EXTRACT_SUFX} +PATCHSETFILE= bsd-jdk131-patches-${JDK_PATCHSET_VERSION}.tar.gz +DISTFILES= ${SRCFILE} ${PATCHSETFILE} MAINTAINER= glewis@FreeBSD.org @@ -98,11 +99,30 @@ BUILD_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar TAR= gtar # Necessary for proper extraction of sources .endif -.for file in ${DISTFILES} -.if !exists(${DISTDIR}/${file}) -IGNORE=You must manually fetch the source distribution and FreeBSD patches (${DISTFILES}) from http://www.sun.com/software/java2/download.html and http://www.eyesbeyond.com/freebsddom/java/jdk13.html, place it in ${DISTDIR} and then run make again +# Check for JDK sources +.if !exists(${DISTDIR}/${SRCFILE}) +ECHO_MSG=/usr/bin/printf +IGNORE= :\n\ +Because of licensing restrictions, you must fetch the source distribution\n\ +manually. Please access http://www.sun.com/software/java2/download.html\n\ +with a web browser and follow the \"Download\" link for the\n\ +\"Java(TM) SDK ${JDK_VERSION}\". You will be required to log in and register,\n\ +but you can create an account on this page. After registration and\n\ +accepting the Sun Community Source License, select \"J2SESDK\" and\n\ +download the file \"${SRCFILE}\". Please place this file in\n\ +/usr/ports/distfiles.\n +.endif + +# Check for patchset +.if !exists(${DISTDIR}/${PATCHSETFILE}) +ECHO_MSG=/usr/bin/printf +IGNORE= :\n\ +The source distribution exists on your system, but due to\n\ +licensing restrictions you still need to download the\n\ +patchset, ${PATCHSETFILE}, from\n\ +http://www.eyesbeyond.com/freebsddom/java/jdk13.html.\n\ +Please place the patchset in /usr/ports/distfiles.\n .endif -.endfor pre-patch: @cd ${WRKDIR} && \ |