From bryan@shatow.net  Sun Jun 10 03:42:20 2012
Return-Path: <bryan@shatow.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id AEA7E106566C
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 10 Jun 2012 03:42:20 +0000 (UTC)
	(envelope-from bryan@shatow.net)
Received: from secure.xzibition.com (secure.xzibition.com [173.160.118.92])
	by mx1.freebsd.org (Postfix) with ESMTP id 5E0838FC14
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 10 Jun 2012 03:42:20 +0000 (UTC)
Received: (qmail 61336 invoked from network); 9 Jun 2012 22:42:17 -0500
Received: from unknown (HELO test8.xzibition.com) (10.10.0.34)
  by sweb.xzibition.com with SMTP; 9 Jun 2012 22:42:17 -0500
Received: by test8.xzibition.com (sSMTP sendmail emulation); Sat, 09 Jun 2012 22:42:16 -0500
Message-Id: <20120610034220.AEA7E106566C@hub.freebsd.org>
Date: Sat, 09 Jun 2012 22:42:16 -0500
From: "Bryan Drewery" <bryan@shatow.net>
Reply-To: Bryan Drewery <bryan@shatow.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc: eadler@freebsd.org
Subject: Fix quoted IGNORE/BROKEN
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         168908
>Category:       ports
>Synopsis:       Fix quoted IGNORE/BROKEN
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    bdrewery
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jun 10 03:50:10 UTC 2012
>Closed-Date:    Fri Mar 15 21:57:06 CDT 2013
>Last-Modified:  Sat Mar 16 03:00:00 UTC 2013
>Originator:     Bryan Drewery
>Release:        FreeBSD 8.3-RELEASE i386
>Organization:
>Environment:

	
>Description:
	This removes needless quoting from IGNORE/BROKEN. It also cleans up some unnecessary escaping.
	Task taken from http://wiki.freebsd.org/PortsLongtermTargets#BROKEN.2BAC8-IGNORE_quoted
>How-To-Repeat:
	
>Fix:

	

--- patch-quoted-ignore-broken.txt begins here ---
diff -ur /usr/ports/databases/linux-oracle-instantclient-basic/Makefile ./databases/linux-oracle-instantclient-basic/Makefile
--- /usr/ports/databases/linux-oracle-instantclient-basic/Makefile	2010-10-28 16:00:07.000000000 -0500
+++ ./databases/linux-oracle-instantclient-basic/Makefile	2012-06-09 22:18:36.981491599 -0500
@@ -65,7 +65,7 @@
 IGNORE+=		distribution manually.  Please access  \n
 IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
 IGNORE+=		with a web browser and follow the link for the \n
-IGNORE+=		\"${DISTFILES}\".  \n
+IGNORE+=		"${DISTFILES}".  \n
 IGNORE+=		You will be required to register and log in, \n
 IGNORE+=		but you can create an account on that page.  \n
 IGNORE+=		After registration and accepting the Oracle License, \n
diff -ur /usr/ports/databases/linux-oracle-instantclient-sdk/Makefile ./databases/linux-oracle-instantclient-sdk/Makefile
--- /usr/ports/databases/linux-oracle-instantclient-sdk/Makefile	2010-10-28 16:00:07.000000000 -0500
+++ ./databases/linux-oracle-instantclient-sdk/Makefile	2012-06-09 22:18:54.401491784 -0500
@@ -93,7 +93,7 @@
 IGNORE+=		distribution manually.  Please access  \n
 IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
 IGNORE+=		with a web browser and follow the link for the \n
-IGNORE+=		\"${DISTFILES}\".  \n
+IGNORE+=		"${DISTFILES}".  \n
 IGNORE+=		You will be required to register and log in, \n
 IGNORE+=		but you can create an account on that page.  \n
 IGNORE+=		After registration and accepting the Oracle License, \n
diff -ur /usr/ports/databases/linux-oracle-instantclient-sqlplus/Makefile ./databases/linux-oracle-instantclient-sqlplus/Makefile
--- /usr/ports/databases/linux-oracle-instantclient-sqlplus/Makefile	2010-10-28 16:00:08.000000000 -0500
+++ ./databases/linux-oracle-instantclient-sqlplus/Makefile	2012-06-09 22:18:45.198490857 -0500
@@ -63,7 +63,7 @@
 IGNORE+=		distribution manually.  Please access  \n
 IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
 IGNORE+=		with a web browser and follow the link for the \n
-IGNORE+=		\"${DISTFILES}\".  \n
+IGNORE+=		"${DISTFILES}".  \n
 IGNORE+=		You will be required to register and log in, \n
 IGNORE+=		but you can create an account on that page.  \n
 IGNORE+=		After registration and accepting the Oracle License, \n
diff -ur /usr/ports/emulators/stonx/Makefile ./emulators/stonx/Makefile
--- /usr/ports/emulators/stonx/Makefile	2010-12-20 23:33:32.000000000 -0600
+++ ./emulators/stonx/Makefile	2012-06-09 22:16:19.439491291 -0500
@@ -73,8 +73,8 @@
 .include <bsd.port.pre.mk>
 
 .if !exists(${DISTDIR}/${TOSIMG})
-IGNORE="Please get a ROM dump from your AtariST and save it as"\
-"\"${TOSIMG}\" in \"${DISTDIR}\" manually, and then make again"
+IGNORE=	Please get a ROM dump from your AtariST and save it as\
+"${TOSIMG}" in "${DISTDIR}" manually, and then make again
 .endif
 
 BUILD_DEPENDS+=		${LOCALBASE}/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc
diff -ur /usr/ports/games/rftg/Makefile ./games/rftg/Makefile
--- /usr/ports/games/rftg/Makefile	2012-05-25 15:49:45.000000000 -0500
+++ ./games/rftg/Makefile	2012-06-09 22:07:36.607491539 -0500
@@ -23,7 +23,7 @@
 .include <bsd.port.pre.mk>
 
 .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
-IGNORE=		"Race for the Galaxy AI contains images and card names that are copyright Rio Grande Games. They have granted Keldon Jones ( http://www.keldon.net ) permission to distribute them, but this does not appear to include redistribution rights. Please download ${DISTFILES} manually from ${DOWNLOAD_URL} and place it in ${DISTDIR}"
+IGNORE=		Race for the Galaxy AI contains images and card names that are copyright Rio Grande Games. They have granted Keldon Jones ( http://www.keldon.net ) permission to distribute them, but this does not appear to include redistribution rights. Please download ${DISTFILES} manually from ${DOWNLOAD_URL} and place it in ${DISTDIR}
 .endif
 
 .include <bsd.port.post.mk>
diff -ur /usr/ports/java/jai/Makefile ./java/jai/Makefile
--- /usr/ports/java/jai/Makefile	2012-02-25 16:15:56.000000000 -0600
+++ ./java/jai/Makefile	2012-06-09 22:09:06.878491423 -0500
@@ -41,7 +41,7 @@
 .include <bsd.port.pre.mk>
 
 .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
-IGNORE=		You must manually fetch from the \"Java Advanced Imaging API 1.1.3 Download Page\", the \"Java (no native acceleration)\" distribution \(${DISTNAME}${EXTRACT_SUFX}\) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
+IGNORE=		You must manually fetch from the "Java Advanced Imaging API 1.1.3 Download Page", the "Java (no native acceleration)" distribution (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
 .endif
 
 do-install:
diff -ur /usr/ports/java/jdk16-doc/Makefile ./java/jdk16-doc/Makefile
--- /usr/ports/java/jdk16-doc/Makefile	2011-08-29 00:51:25.000000000 -0500
+++ ./java/jdk16-doc/Makefile	2012-06-09 22:08:23.388491345 -0500
@@ -36,7 +36,7 @@
 .include <bsd.port.pre.mk>
 
 .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
-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
+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:
diff -ur /usr/ports/mail/dbmail22/Makefile ./mail/dbmail22/Makefile
--- /usr/ports/mail/dbmail22/Makefile	2012-03-19 12:41:45.000000000 -0500
+++ ./mail/dbmail22/Makefile	2012-06-09 22:09:56.937492228 -0500
@@ -105,7 +105,7 @@
 .endif
 
 .if defined(WITHOUT_MYSQL) && !defined(WITH_POSTGRESQL) && !defined(WITH_SQLITE)
-IGNORE="requires at least one database backend selected. Run 'make config'"
+IGNORE=	requires at least one database backend selected. Run 'make config'
 .endif
 
 post-patch:
diff -ur /usr/ports/math/libflame/Makefile ./math/libflame/Makefile
--- /usr/ports/math/libflame/Makefile	2012-03-05 23:51:53.000000000 -0600
+++ ./math/libflame/Makefile	2012-06-09 22:15:13.000491685 -0500
@@ -117,7 +117,7 @@
 WITH_BLAS?=	reference_c
 .endif
 .if !(${WITH_BLAS} == "atlas_c" || ${WITH_BLAS} == "reference_c")
-IGNORE =	: WITH_CBLAS is incompatible with WITH_BLAS = ${WITH_BLAS}"
+IGNORE=	: WITH_CBLAS is incompatible with WITH_BLAS = ${WITH_BLAS}
 .endif
 .elif exists(${LOCALBASE}/lib/libgoto2.so)
 WITH_BLAS?=	gotoblas
diff -ur /usr/ports/math/octave-forge-es/Makefile ./math/octave-forge-es/Makefile
--- /usr/ports/math/octave-forge-es/Makefile	2012-04-10 21:58:20.000000000 -0500
+++ ./math/octave-forge-es/Makefile	2012-06-09 22:13:22.467492650 -0500
@@ -13,7 +13,7 @@
 MAINTAINER=	stephen@FreeBSD.org
 COMMENT=	Octave-forge package ${OCTAVE_PKGNAME}
 
-BROKEN=		"Does not build"
+BROKEN=		Does not build
 
 # OCTSRC is the name of the directory of the package.
 # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
diff -ur /usr/ports/math/unixstat/Makefile ./math/unixstat/Makefile
--- /usr/ports/math/unixstat/Makefile	2007-07-14 12:07:46.000000000 -0500
+++ ./math/unixstat/Makefile	2012-06-09 22:14:07.411489067 -0500
@@ -31,11 +31,11 @@
 		stats.1 transpose.1 ts.1 unixstat.1 validata.1
 
 .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
-IGNORE="Gary Perlman requires that users agree to his license"\
-"before he will allow access to the distfile."\
-"See his web site at http://www.acm.org/~perlman/stat/ for"\
-"details.  Then put ${DISTNAME}${EXTRACT_SUFX} in"\
-"${DISTDIR} and run make again"
+IGNORE=	Gary Perlman requires that users agree to his license\
+before he will allow access to the distfile.\
+See his web site at http://www.acm.org/~perlman/stat/ for\
+details.  Then put ${DISTNAME}${EXTRACT_SUFX} in\
+${DISTDIR} and run make again
 .endif
 
 post-patch:
diff -ur /usr/ports/ports-mgmt/vulnerability-test-port/Makefile ./ports-mgmt/vulnerability-test-port/Makefile
--- /usr/ports/ports-mgmt/vulnerability-test-port/Makefile	2007-07-29 14:16:37.000000000 -0500
+++ ./ports-mgmt/vulnerability-test-port/Makefile	2012-06-09 22:14:39.700494732 -0500
@@ -22,7 +22,7 @@
 .ifdef INSTALLATION_DATE
 MYDATE!=		date -j -f "%Y.%m.%d" "${INSTALLATION_DATE}" "+%Y.%m.%d" 2>/dev/null
 .if ${MYDATE} != ${INSTALLATION_DATE}
-IGNORE=		": \`\`${INSTALLATION_DATE}\'\' is not a legal date. INSTALLATION_DATE must be in the form YYYY.MM.DD"
+IGNORE=		: "${INSTALLATION_DATE}" is not a legal date. INSTALLATION_DATE must be in the form YYYY.MM.DD
 .endif
 .else
 INSTALLATION_DATE!=	date -u "+%Y.%m.%d"
diff -ur /usr/ports/security/pam_krb5/Makefile ./security/pam_krb5/Makefile
--- /usr/ports/security/pam_krb5/Makefile	2011-10-31 18:25:26.000000000 -0500
+++ ./security/pam_krb5/Makefile	2012-06-09 22:07:12.992492200 -0500
@@ -34,7 +34,7 @@
 KRB5_DIR?=		${KRB5_HOME}
 .endif
 .else
-IGNORE=			you must define KRB5_IMPL to be \"mit\" or \"heimdal\"
+IGNORE=			you must define KRB5_IMPL to be "mit" or "heimdal"
 .endif
 
 MANDIR=			${MANPREFIX}/man
diff -ur /usr/ports/sysutils/condor/Makefile ./sysutils/condor/Makefile
--- /usr/ports/sysutils/condor/Makefile	2012-05-10 11:28:19.000000000 -0500
+++ ./sysutils/condor/Makefile	2012-06-09 22:16:59.684491749 -0500
@@ -110,7 +110,7 @@
 .include <bsd.port.pre.mk>
 
 .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
-IGNORE=	requires that you go to http://research.cs.wisc.edu/condor/ to register and manually download the source distribution ${DISTNAME}${EXTRACT_SUFX}, place it in ${DISTDIR}, and then run make again."
+IGNORE=	requires that you go to http://research.cs.wisc.edu/condor/ to register and manually download the source distribution ${DISTNAME}${EXTRACT_SUFX}, place it in ${DISTDIR}, and then run make again
 .endif
 
 pre-everything::
--- patch-quoted-ignore-broken.txt ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Sun Jun 10 05:50:06 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=168908 
Responsible-Changed-From-To: miwi->bdrewery 
Responsible-Changed-By: bdrewery 
Responsible-Changed-When: Sun Oct 28 17:26:51 CDT 2012 
Responsible-Changed-Why:  
take back 

http://www.freebsd.org/cgi/query-pr.cgi?pr=168908 
State-Changed-From-To: open->closed 
State-Changed-By: bdrewery 
State-Changed-When: Fri Mar 15 21:57:05 CDT 2013 
State-Changed-Why:  
Committed. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=168908 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/168908: commit references a PR
Date: Sat, 16 Mar 2013 02:56:45 +0000 (UTC)

 Author: bdrewery
 Date: Sat Mar 16 02:56:29 2013
 New Revision: 314333
 URL: http://svnweb.freebsd.org/changeset/ports/314333
 
 Log:
   - Remove needless quoting of BROKEN/IGNORE
   - Trim headers
   
   PR:		ports/168908
   With hat:	portmgr
 
 Modified:
   head/databases/linux-oracle-instantclient-basic/Makefile
   head/databases/linux-oracle-instantclient-sdk/Makefile
   head/databases/linux-oracle-instantclient-sqlplus/Makefile
   head/emulators/stonx/Makefile
   head/games/rftg/Makefile
   head/java/jai/Makefile
   head/java/jdk16-doc/Makefile
   head/math/libflame/Makefile
   head/math/octave-forge-es/Makefile
   head/math/unixstat/Makefile
   head/ports-mgmt/vulnerability-test-port/Makefile
   head/security/pam_krb5/Makefile
 
 Modified: head/databases/linux-oracle-instantclient-basic/Makefile
 ==============================================================================
 --- head/databases/linux-oracle-instantclient-basic/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/databases/linux-oracle-instantclient-basic/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:	linux-oracle-instantclient-basic
 -# Date created:				03 June 2004
 -# Whom:					Alexander Novitsky
 -#
 +# Created by: Alexander Novitsky
  # $FreeBSD$
 -#
  
  PORTNAME=		instantclient
  PORTVERSION=		${ORACLEVERSION}.${DISTDATE}
 @@ -65,7 +61,7 @@ IGNORE+=		Due to Oracle license restrict
  IGNORE+=		distribution manually.  Please access  \n
  IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
  IGNORE+=		with a web browser and follow the link for the \n
 -IGNORE+=		\"${DISTFILES}\".  \n
 +IGNORE+=		"${DISTFILES}".  \n
  IGNORE+=		You will be required to register and log in, \n
  IGNORE+=		but you can create an account on that page.  \n
  IGNORE+=		After registration and accepting the Oracle License, \n
 
 Modified: head/databases/linux-oracle-instantclient-sdk/Makefile
 ==============================================================================
 --- head/databases/linux-oracle-instantclient-sdk/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/databases/linux-oracle-instantclient-sdk/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:	linux-oracle-instantclient-sdk
 -# Date created:				2005-04-26
 -# Whom:					nork@FreeBSD.org
 -#
 +# Created by: nork@FreeBSD.org
  # $FreeBSD$
 -#
  
  PORTNAME=		instantclient
  PORTVERSION=		${ORACLEVERSION}.${DISTDATE}
 @@ -93,7 +89,7 @@ IGNORE+=		Due to Oracle license restrict
  IGNORE+=		distribution manually.  Please access  \n
  IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
  IGNORE+=		with a web browser and follow the link for the \n
 -IGNORE+=		\"${DISTFILES}\".  \n
 +IGNORE+=		"${DISTFILES}".  \n
  IGNORE+=		You will be required to register and log in, \n
  IGNORE+=		but you can create an account on that page.  \n
  IGNORE+=		After registration and accepting the Oracle License, \n
 
 Modified: head/databases/linux-oracle-instantclient-sqlplus/Makefile
 ==============================================================================
 --- head/databases/linux-oracle-instantclient-sqlplus/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/databases/linux-oracle-instantclient-sqlplus/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:	linux-oracle-instantclient-sqlplus
 -# Date created:				2005-04-26
 -# Whom:					nork@FreeBSD.org
 -#
 +# Created by: nork@FreeBSD.org
  # $FreeBSD$
 -#
  
  PORTNAME=		instantclient
  PORTVERSION=		${ORACLEVERSION}.${DISTDATE}
 @@ -63,7 +59,7 @@ IGNORE+=		Due to Oracle license restrict
  IGNORE+=		distribution manually.  Please access  \n
  IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
  IGNORE+=		with a web browser and follow the link for the \n
 -IGNORE+=		\"${DISTFILES}\".  \n
 +IGNORE+=		"${DISTFILES}".  \n
  IGNORE+=		You will be required to register and log in, \n
  IGNORE+=		but you can create an account on that page.  \n
  IGNORE+=		After registration and accepting the Oracle License, \n
 
 Modified: head/emulators/stonx/Makefile
 ==============================================================================
 --- head/emulators/stonx/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/emulators/stonx/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -69,8 +69,8 @@ post-install:
  .include <bsd.port.pre.mk>
  
  .if !exists(${DISTDIR}/${TOSIMG})
 -IGNORE="Please get a ROM dump from your AtariST and save it as"\
 -"\"${TOSIMG}\" in \"${DISTDIR}\" manually, and then make again"
 +IGNORE=	please get a ROM dump from your AtariST and save it as\
 +"${TOSIMG}" in "${DISTDIR}" manually, and then make again
  .endif
  
  BUILD_DEPENDS+=		${LOCALBASE}/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc
 
 Modified: head/games/rftg/Makefile
 ==============================================================================
 --- head/games/rftg/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/games/rftg/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# Ports collection makefile for:	rftg
 -# Date created:			Apr 12, 2011
 -# Whom:				Miles V. Aronnax <miles@aronnax.net>
 -#
 +# Created by: Miles V. Aronnax <miles@aronnax.net>
  # $FreeBSD$
 -#
  
  PORTNAME=	rftg
  PORTVERSION=	0.8.1
 @@ -23,7 +19,7 @@ DOWNLOAD_URL=   http://www.keldon.net/rf
  .include <bsd.port.pre.mk>
  
  .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
 -IGNORE=		"Race for the Galaxy AI contains images and card names that are copyright Rio Grande Games. They have granted Keldon Jones ( http://www.keldon.net ) permission to distribute them, but this does not appear to include redistribution rights. Please download ${DISTFILES} manually from ${DOWNLOAD_URL} and place it in ${DISTDIR}"
 +IGNORE=		race for the Galaxy AI contains images and card names that are copyright Rio Grande Games. They have granted Keldon Jones ( http://www.keldon.net ) permission to distribute them, but this does not appear to include redistribution rights. Please download ${DISTFILES} manually from ${DOWNLOAD_URL} and place it in ${DISTDIR}
  .endif
  
  .include <bsd.port.post.mk>
 
 Modified: head/java/jai/Makefile
 ==============================================================================
 --- head/java/jai/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/java/jai/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -37,7 +37,7 @@ PORTDOCS=	\
  .include <bsd.port.pre.mk>
  
  .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
 -IGNORE=		You must manually fetch from the \"Java Advanced Imaging API 1.1.3 Download Page\", the \"Java (no native acceleration)\" distribution \(${DISTNAME}${EXTRACT_SUFX}\) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
 +IGNORE=		you must manually fetch from the "Java Advanced Imaging API 1.1.3 Download Page", the "Java (no native acceleration)" distribution (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
  .endif
  
  do-install:
 
 Modified: head/java/jdk16-doc/Makefile
 ==============================================================================
 --- head/java/jdk16-doc/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/java/jdk16-doc/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:	jdk16-doc
 -# Date created:		August 18, 2007
 -# Whom:			Greg Lewis <glewis@FreeBSD.org>
 -#
 +# Created by: Greg Lewis <glewis@FreeBSD.org>
  # $FreeBSD$
 -#
  
  PORTNAME=	jdk-doc
  PORTVERSION=	${JDK_VERSION}.${JDK_UPDATE_VER}
 @@ -36,7 +32,7 @@ PORTDOCS=	*
  .include <bsd.port.pre.mk>
  
  .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
 -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
 +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:
 
 Modified: head/math/libflame/Makefile
 ==============================================================================
 --- head/math/libflame/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/math/libflame/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,10 +1,5 @@
 -# ex:ts=8
 -# Ports collection makefile for:	libflame
 -# Date created:				1 Jan 2012
 -# Whom: 				bf@FreeBSD.org
 -#
 +# Created by: bf@FreeBSD.org
  # $FreeBSD$
 -#
  
  PORTNAME=	libflame
  DISTVERSION=	r7421
 @@ -117,7 +112,7 @@ WITH_BLAS?=	atlas_c
  WITH_BLAS?=	reference_c
  .endif
  .if !(${WITH_BLAS} == "atlas_c" || ${WITH_BLAS} == "reference_c")
 -IGNORE =	: WITH_CBLAS is incompatible with WITH_BLAS = ${WITH_BLAS}"
 +IGNORE=	: WITH_CBLAS is incompatible with WITH_BLAS = ${WITH_BLAS}
  .endif
  .elif exists(${LOCALBASE}/lib/libgoto2.so)
  WITH_BLAS?=	gotoblas
 
 Modified: head/math/octave-forge-es/Makefile
 ==============================================================================
 --- head/math/octave-forge-es/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/math/octave-forge-es/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:	octave-forge-es
 -# Date created:		6 June 2010
 -# Whom:			Stephen Montgomery-Smith <stephen@math.missouri.edu>
 -#
 +# Created by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
  # $FreeBSD$
 -#
  
  PORTNAME=	octave-forge-es
  PORTVERSION=	0.0.4
 @@ -13,7 +9,7 @@ CATEGORIES=	math
  MAINTAINER=	stephen@FreeBSD.org
  COMMENT=	Octave-forge package ${OCTAVE_PKGNAME}
  
 -BROKEN=		"Does not build"
 +BROKEN=		does not build
  
  # OCTSRC is the name of the directory of the package.
  # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
 
 Modified: head/math/unixstat/Makefile
 ==============================================================================
 --- head/math/unixstat/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/math/unixstat/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:   stat
 -# Date created:        23 August 2001
 -# Whom:                mwm
 -#
 +# Created by: mwm
  # $FreeBSD$
 -#
  
  PORTNAME=	unixstat
  PORTVERSION=	5.4
 @@ -31,11 +27,11 @@ MAN1=		abut.1 anova.1 calc.1 colex.1 con
  		stats.1 transpose.1 ts.1 unixstat.1 validata.1
  
  .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
 -IGNORE="Gary Perlman requires that users agree to his license"\
 -"before he will allow access to the distfile."\
 -"See his web site at http://www.acm.org/~perlman/stat/ for"\
 -"details.  Then put ${DISTNAME}${EXTRACT_SUFX} in"\
 -"${DISTDIR} and run make again"
 +IGNORE=	Gary Perlman requires that users agree to his license\
 +before he will allow access to the distfile.\
 +See his web site at http://www.acm.org/~perlman/stat/ for\
 +details.  Then put ${DISTNAME}${EXTRACT_SUFX} in\
 +${DISTDIR} and run make again
  .endif
  
  post-patch:
 
 Modified: head/ports-mgmt/vulnerability-test-port/Makefile
 ==============================================================================
 --- head/ports-mgmt/vulnerability-test-port/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/ports-mgmt/vulnerability-test-port/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# New ports collection makefile for:	vulnerability-test-port
 -# Date created:				25 Jan 2004
 -# Whom:					Oliver Eikemeier
 -#
 +# Created by: Oliver Eikemeier
  # $FreeBSD$
 -#
  
  PORTNAME=		vulnerability-test-port
  PORTVERSION=		${INSTALLATION_DATE}
 @@ -22,7 +18,7 @@ INSTALLATION_DATE=	2004.01.25
  .ifdef INSTALLATION_DATE
  MYDATE!=		date -j -f "%Y.%m.%d" "${INSTALLATION_DATE}" "+%Y.%m.%d" 2>/dev/null
  .if ${MYDATE} != ${INSTALLATION_DATE}
 -IGNORE=		": \`\`${INSTALLATION_DATE}\'\' is not a legal date. INSTALLATION_DATE must be in the form YYYY.MM.DD"
 +IGNORE=		: "${INSTALLATION_DATE}" is not a legal date. INSTALLATION_DATE must be in the form YYYY.MM.DD
  .endif
  .else
  INSTALLATION_DATE!=	date -u "+%Y.%m.%d"
 
 Modified: head/security/pam_krb5/Makefile
 ==============================================================================
 --- head/security/pam_krb5/Makefile	Sat Mar 16 02:54:51 2013	(r314332)
 +++ head/security/pam_krb5/Makefile	Sat Mar 16 02:56:29 2013	(r314333)
 @@ -1,9 +1,5 @@
 -# Ports collection Makefile for:	pam_krb5
 -# Date created:				11/03/2000
 -# Whom:					nectar@FreeBSD.org
 -#
 +# Created by: nectar@FreeBSD.org
  # $FreeBSD$
 -#
  
  PORTNAME=		pam_krb5
  PORTVERSION=		4.6
 @@ -33,7 +29,7 @@ LIB_DEPENDS=		krb5.3:${PORTSDIR}/securit
  KRB5_DIR?=		${KRB5_HOME}
  .endif
  .else
 -IGNORE=			you must define KRB5_IMPL to be \"mit\" or \"heimdal\"
 +IGNORE=			you must define KRB5_IMPL to be "mit" or "heimdal"
  .endif
  
  MANDIR=			${MANPREFIX}/man
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
