From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 28 04:30:49 2008 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9412106564A for ; Fri, 28 Mar 2008 04:30:49 +0000 (UTC) (envelope-from shigeru@iij.ad.jp) Received: from otm-mgo00.iij.ad.jp (otm-mgo00.iij.ad.jp [210.138.20.174]) by mx1.freebsd.org (Postfix) with ESMTP id 854468FC26 for ; Fri, 28 Mar 2008 04:30:49 +0000 (UTC) (envelope-from shigeru@iij.ad.jp) DKIM-Signature: v=1;a=rsa-sha256;c=relaxed/simple;d=iij.ad.jp;h=Date: Message-Id:To:Subject:From:Mime-Version:Content-Type: Content-Transfer-Encoding;i=shigeru@iij.ad.jp;s=omgo0;t=1206677353;x= 1207886953; bh=H/rcSbUgaoR+sCO4tsQI/6ijyusQhriEV8+k2a+jOSE=; b=iG5K/eEvd7cim+tE H5xlRPH9An8Zfl5d1L4FEZE36jAMKOzmJz0uoTPVEoGKqECbmaJxFNkS40Pe5vRx7RfQodiHu1Kgc HB0wkvIGbj2kALbRTwE6lDwxwiYN5wWmZ1p/2X7LXUjoUIjmiLODqKCsQG1hKfoMt+PvD2y/MeJUF 4=; Received: OTM-MO(otm-mgo00) id m2S49DBG021979; Fri, 28 Mar 2008 13:09:13 +0900 (JST) Received: OTM-MIX(otm-mix00) id m2S49Dg7077839; Fri, 28 Mar 2008 13:09:13 +0900 (JST) Received: from localhost (mercury.iij.ad.jp [192.168.184.90]) by rsmtp.iij.ad.jp (OTM-MR/rsmtp01) id m2S49A5C051836 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 28 Mar 2008 13:09:12 +0900 (JST) Date: Fri, 28 Mar 2008 13:09:10 +0900 (JST) Message-Id: <20080328.130910.102576097.shigeru@iij.ad.jp> To: freebsd-ports-bugs@FreeBSD.org From: YAMAMOTO Shigeru X-Mailer: Mew version 5.2 on Emacs 22.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Fri_Mar_28_13_09_10_2008_482)--" Content-Transfer-Encoding: 7bit Cc: Subject: [patch] fix errors at 'make index' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2008 04:30:50 -0000 ----Next_Part(Fri_Mar_28_13_09_10_2008_482)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, all. I send a patch to fix errors at doing 'make index' in today's current environment. Some Makefiles are using "single quote"(') for quoting 'OPTIONS' message string. But definition of parsing OPTIONS, which is defined at @ports/Mk/bsd.ports.mk, is, ... REALOPTIONS=${OPTIONS:C/".*"//g} . for O in ${REALOPTIONS} RO:=${O} ... So, I change single quote charactors in some Makefiles to double quote charactors ("). After fixing, I hove no ploblem. Thanks, ------- YAMAMOTO Shigeru ----Next_Part(Fri_Mar_28_13_09_10_2008_482)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ports.fix.make.index.diff" Index: devel/libelf/Makefile =================================================================== RCS file: /share/cvsup/FreeBSD/current/usr/ports/devel/libelf/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- devel/libelf/Makefile 28 Jan 2007 00:58:37 -0000 1.19 +++ devel/libelf/Makefile 27 Mar 2008 00:55:47 -0000 @@ -15,8 +15,8 @@ MAINTAINER= roam@FreeBSD.org COMMENT= A public ELF file access library similar to libelf(3) in Solaris -OPTIONS= EXTENDED 'ELF format extensions' on \ - NLS 'Native Language Support' on +OPTIONS= EXTENDED "ELF format extensions" on \ + NLS "Native Language Support" on .include Index: dns/djbdns/Makefile =================================================================== RCS file: /share/cvsup/FreeBSD/current/usr/ports/dns/djbdns/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- dns/djbdns/Makefile 4 Nov 2007 21:38:07 -0000 1.30 +++ dns/djbdns/Makefile 27 Mar 2008 00:56:15 -0000 @@ -14,13 +14,13 @@ DISTNAME= djbdns-${DJBDNS_VER} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -OPTIONS= DUMPCACHE 'persistent cache for dnscache' off \ - IPV6 'IPv6 support by Felix von Leitner' off \ - IGNOREIP 'ignoreip2 patch by Russell Nelson' off \ - JUMBO 'jumbo patch by Claudiu Costin' off \ - MAN 'manual pages by Gerritt Pape' on \ - PERSISTENT_MMAP 'persistent mmap patch by Lennert Buytenhek' off \ - SRV 'SRV record patch by Michael Handler' off +OPTIONS= DUMPCACHE "persistent cache for dnscache" off \ + IPV6 "IPv6 support by Felix von Leitner" off \ + IGNOREIP "ignoreip2 patch by Russell Nelson" off \ + JUMBO "jumbo patch by Claudiu Costin" off \ + MAN "manual pages by Gerritt Pape" on \ + PERSISTENT_MMAP "persistent mmap patch by Lennert Buytenhek" off \ + SRV "SRV record patch by Michael Handler" off .include Index: games/utserver/Makefile =================================================================== RCS file: /share/cvsup/FreeBSD/current/usr/ports/games/utserver/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- games/utserver/Makefile 13 Mar 2008 14:28:12 -0000 1.29 +++ games/utserver/Makefile 27 Mar 2008 02:00:03 -0000 @@ -22,7 +22,7 @@ RUN_DEPENDS= ${LINUXBASE}/usr/lib/libSDL-1.2.so.0:${PORTSDIR}/devel/linux-sdl12 -OPTIONS= BONUSPACKS 'install the official bonus packs collection' on +OPTIONS= BONUSPACKS "install the official bonus packs collection" on USE_LINUX= yes NO_CDROM= Size; the data set is much too big Index: net/c3270/Makefile =================================================================== RCS file: /share/cvsup/FreeBSD/current/usr/ports/net/c3270/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- net/c3270/Makefile 29 Jun 2007 16:29:06 -0000 1.17 +++ net/c3270/Makefile 27 Mar 2008 03:05:23 -0000 @@ -37,18 +37,18 @@ # c3270's ./configure script supports these. # Within it all options except DBCS are enabled by default. -OPTIONS=OPENSSL 'Build with OpenSSL support' on \ - READLINE 'Use system Readline library' on \ - PR3287 'Build pr3287 component' on \ - ANSI 'Include NVT (ANSI) support' on \ - APL 'Include APL support' on \ - DBCS 'Include EBCDIC DBCS support' off \ - FT 'Include IND\$$FILE support' on \ - LOCAL_PROCESS 'Include Local Process support' on \ - PRINTER 'Include printer session support' on \ - SCRIPT 'Include scripting support' on \ - TN3270E 'Include TN3270-Extended support' on \ - TRACE 'Include trace support' on +OPTIONS=OPENSSL "Build with OpenSSL support" on \ + READLINE "Use system Readline library" on \ + PR3287 "Build pr3287 component" on \ + ANSI "Include NVT (ANSI) support" on \ + APL "Include APL support" on \ + DBCS "Include EBCDIC DBCS support" off \ + FT "Include IND\$$FILE support" on \ + LOCAL_PROCESS "Include Local Process support" on \ + PRINTER "Include printer session support" on \ + SCRIPT "Include scripting support" on \ + TN3270E "Include TN3270-Extended support" on \ + TRACE "Include trace support" on .include ----Next_Part(Fri_Mar_28_13_09_10_2008_482)----