diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2005-09-03 06:13:03 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2005-09-03 06:13:03 +0000 |
commit | 5c0642d3ef8fda3e0450184048683ca05bb982a1 (patch) | |
tree | 480bd5b9f9565ec602acf714c781bb31c6e54eaa /java | |
parent | 3657472e9261319e03ffa00e767dc67d699d4e7a (diff) | |
download | ports-5c0642d3ef8fda3e0450184048683ca05bb982a1.tar.gz ports-5c0642d3ef8fda3e0450184048683ca05bb982a1.zip |
. Tell the user all the files they will need up front, instead of telling
porky pies about what they have and prompting them one file at a time.
This is a rewording and reworking (for jdk13) of the patch in the
attributed PR by fenner@ (which is for jdk14).
. Update the (commented out) MASTER_SITES while I'm here.
PR: 84644
Notes
Notes:
svn path=/head/; revision=141834
Diffstat (limited to 'java')
-rw-r--r-- | java/jdk13/Makefile | 53 |
1 files changed, 29 insertions, 24 deletions
diff --git a/java/jdk13/Makefile b/java/jdk13/Makefile index f1862d67e288..b0fe174ce68f 100644 --- a/java/jdk13/Makefile +++ b/java/jdk13/Makefile @@ -9,8 +9,8 @@ PORTNAME= jdk PORTVERSION= ${JDK_VERSION}p${JDK_PATCHSET_VERSION} PORTREVISION= 5 CATEGORIES= java devel -MASTER_SITES= # http://www.sun.com/software/java2/download.html -# http://www.eyesbeyond.com/freebsddom/java/jdk13.html +MASTER_SITES= # http://www.sun.com/software/communitysource/j2se/java2/download.xml +# http://www.eyesbeyond.com/freebsddom/java/jdk13.html SRCFILE= j2sdk-${JDK_VERSION:S/./_/g}-src${EXTRACT_SUFX} PATCHSETFILE= bsd-jdk131-patches-${JDK_PATCHSET_VERSION}.tar.gz DISTFILES= ${SRCFILE} ${PATCHSETFILE} @@ -144,30 +144,35 @@ EXTRACT_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar TAR= gtar # Necessary for proper extraction of sources .endif -# Check for patchset -.if !exists(${DISTDIR}/${PATCHSETFILE}) && !defined(PACKAGE_BUILDING) +# Check for JDK sources and patchset +.if !defined(PACKAGE_BUILDING) && (!exists(${DISTDIR}/${SRCFILE}) || !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 ${DISTDIR}.\n -.endif - -# Check for JDK sources -.if !exists(${DISTDIR}/${SRCFILE}) && !defined(PACKAGE_BUILDING) -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\ +IGNORE= :\n\n\ +Due to licensing restrictions, certain files must be fetched manually.\n\n +.if !exists(${DISTDIR}/${SRCFILE})#{ +IGNORE += Please open http://www.sun.com/software/communitysource/j2se/java2/download.xml\n\ +in a web browser and follow the \"Download\" link for the\n\ +\"Java(TM) 2 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 source file, ${SRCFILE}. Please place this file in\n\ -${DISTDIR}.\n -.endif +accepting the Sun Community Source License, download the SCSL Source file,\n\ +${SRCFILE}.\n +.if !exists(${DISTDIR}/${PATCHSETFILE})#{ +IGNORE += \n In addition, please +.endif#} +.elif !exists(${DISTDIR}/${PATCHSETFILE}) +IGNORE += Please +.endif#} +.if !exists(${DISTDIR}/${PATCHSETFILE})#{ +IGNORE += download the patchset, ${PATCHSETFILE}, from\n\ +http://www.eyesbeyond.com/freebsddom/java/jdk13.html.\n +.endif#} +.if !exists(${DISTDIR}/${SRCFILE}) && !exists(${DISTDIR}/${PATCHSETFILE})#{ +IGNORE += \n Then place the downloaded files in ${DISTDIR} +.else +IGNORE += \n Then place the downloaded file in ${DISTDIR} +.endif#} +IGNORE += and restart the build.\n\n +.endif#} # HotSpot and/or native threads require a recent version of FreeBSD .if ( defined(WITH_NATIVE_THREADS) || defined(WITH_HOTSPOT) ) && ( ${OSVERSION} < 470101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500043 ) ) |