From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jan 4 07:10:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5D4416A4CE for ; Sun, 4 Jan 2004 07:10:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46D4043D58 for ; Sun, 4 Jan 2004 07:10:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i04FA7FR054720 for ; Sun, 4 Jan 2004 07:10:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04FA7pq054719; Sun, 4 Jan 2004 07:10:07 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 07:10:07 -0800 (PST) Resent-Message-Id: <200401041510.i04FA7pq054719@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eirik Nygaard Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDFA416A4CE for ; Sun, 4 Jan 2004 07:03:57 -0800 (PST) Received: from odin.eirikn.net (a217-118-47-241.bluecom.no [217.118.47.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A2FD43D49 for ; Sun, 4 Jan 2004 07:03:55 -0800 (PST) (envelope-from eirik@odin.eirikn.net) Received: from odin.eirikn.net (localhost [127.0.0.1]) by odin.eirikn.net (8.12.10/8.12.9) with ESMTP id i04F483M078525 for ; Sun, 4 Jan 2004 16:04:09 +0100 (CET) (envelope-from eirik@odin.eirikn.net) Received: (from eirik@localhost) by odin.eirikn.net (8.12.10/8.12.9/Submit) id i04F48bx078524; Sun, 4 Jan 2004 16:04:08 +0100 (CET) Message-Id: <200401041504.i04F48bx078524@odin.eirikn.net> Date: Sun, 4 Jan 2004 16:04:08 +0100 (CET) From: Eirik Nygaard To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/60895: X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eirik Nygaard List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 15:10:10 -0000 >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: