Date: Sun, 4 Jan 2004 16:04:08 +0100 (CET) From: Eirik Nygaard <eirikn@kerneled.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/60895: Message-ID: <200401041504.i04F48bx078524@odin.eirikn.net> Resent-Message-ID: <200401041510.i04FA7pq054719@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 60895 >Category: ports >Synopsis: >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 07:10:06 PST 2004 >Closed-Date: >Last-Modified: >Originator: Eirik Nygaard >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD odin.eirikn.net 5.2-CURRENT FreeBSD 5.2-CURRENT #3: Fri Dec 26 14:36:24 CET 2003 eirik@ odin.eirikn.net:/usr/obj/usr/src/sys/ITvision i386 >Description: The newline characters "\n" does not get transformed into a newline, but remains two characters when the IGNORE lines are printed. >How-To-Repeat: run make in /usr/ports/java/jdk13 when you have not downloaded one of the needed source packages. >Fix: Apply supplied patch, which just removes the "\n" on the end of each line in the IGNORE keywords. --- jdk13.newline.fixed.diff begins here --- diff -ur jdk13.orig/Makefile jdk13/Makefile --- jdk13.orig/Makefile Sun Jan 4 15:50:54 2004 +++ jdk13/Makefile Sun Jan 4 16:01:04 2004 @@ -140,34 +140,34 @@ # Check for patchset .if !exists(${DISTDIR}/${PATCHSETFILE}) && !defined(PACKAGE_BUILDING) 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 +IGNORE= :\ +The source distribution exists on your system, but due to\ +licensing restrictions you still need to download the\ +patchset, ${PATCHSETFILE}, from\ +http://www.eyesbeyond.com/freebsddom/java/jdk13.html.\ +Please place the patchset in ${DISTDIR}. .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\ -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 +IGNORE= :\ +Because of licensing restrictions, you must fetch the source distribution\ +manually. Please access http://www.sun.com/software/java2/download.html\ +with a web browser and follow the \"Download\" link for the\ +\"Java(TM) SDK ${JDK_VERSION}\". You will be required to log in and register,\ +but you can create an account on this page. After registration and\ +accepting the Sun Community Source License, select \"J2SESDK\" and\ +download the source file, ${SRCFILE}. Please place this file in\ +${DISTDIR}. .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 ) ) ECHO_MSG=/usr/bin/printf -IGNORE= :\n\ -You must have a version of FreeBSD later than 4.7-STABLE February 2003\n\ -or 5-CURRENT February 2003 to use either native threads or HotSpot.\n +IGNORE= :\ +You must have a version of FreeBSD later than 4.7-STABLE February 2003\ +or 5-CURRENT February 2003 to use either native threads or HotSpot. .endif # Warn user about HotSpot build --- jdk13.newline.fixed.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401041504.i04F48bx078524>