From owner-svn-ports-head@FreeBSD.ORG Tue Sep 4 19:09:40 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFC631065677; Tue, 4 Sep 2012 19:09:40 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 926468FC14; Tue, 4 Sep 2012 19:09:39 +0000 (UTC) Received: from alph.allbsd.org (p3048-ipbf1204funabasi.chiba.ocn.ne.jp [123.218.144.48]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id q84J9MXx059885 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 5 Sep 2012 04:09:33 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id q84J9LV8001485; Wed, 5 Sep 2012 04:09:22 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Wed, 05 Sep 2012 04:09:12 +0900 (JST) Message-Id: <20120905.040912.313960415548568697.hrs@allbsd.org> To: utisoft@gmail.com From: Hiroki Sato In-Reply-To: References: <201209040521.q845Lc7f099295@svn.freebsd.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Wed_Sep__5_04_09_12_2012_400)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Wed, 05 Sep 2012 04:09:33 +0900 (JST) X-Spam-Status: No, score=-96.6 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT, QENCPTR1, RCVD_IN_RP_RNBL, SAMEHELOBY2HOP, USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: svn commit: r303635 - in head/print: ghostscript8 ghostscript9 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Sep 2012 19:09:41 -0000 ----Security_Multipart(Wed_Sep__5_04_09_12_2012_400)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Chris Rees wrote in : ut> On 4 Sep 2012 06:21, "Hiroki Sato" wrote: ut> > ut> > Author: hrs ut> > Date: Tue Sep 4 05:21:38 2012 ut> > New Revision: 303635 ut> > URL: http://svn.freebsd.org/changeset/ports/303635 ut> > ut> > Log: ut> > Fix build on !i386 && !amd64. ut> > ut> > PR: ports/171253 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=171253 ut> > ut> > Modified: ut> > head/print/ghostscript8/Makefile ut> > head/print/ghostscript8/Makefile.drivers ut> > head/print/ghostscript9/Makefile ut> > head/print/ghostscript9/Makefile.drivers ut> > ut> > Modified: head/print/ghostscript8/Makefile ut> > ut> ============================================================================== ut> > --- head/print/ghostscript8/Makefile Tue Sep 4 03:05:23 2012 ut> (r303634) ut> > +++ head/print/ghostscript8/Makefile Tue Sep 4 05:21:38 2012 ut> (r303635) ut> > @@ -90,8 +90,8 @@ MLINKS= gslp.1 gsbj.1 \ ut> > CIDFONTDIR= ${DATADIR}/${PORTVERSION}/Resource ut> > EXCLUDE_DIRS= jbig2dec jpeg expat jasper libpng tiff zlib ut> > ut> > -.include "Makefile.drivers" ut> > .include ut> > +.include "Makefile.drivers" ut> > .include "${FILESDIR}/Makefile.drivers_post" ut> > ut> > .for D in ${OPTIONS_DEFINE:MGS_*:S/^GS_//} ut> > ut> > Modified: head/print/ghostscript8/Makefile.drivers ut> > ut> ============================================================================== ut> > --- head/print/ghostscript8/Makefile.drivers Tue Sep 4 03:05:23 2012 ut> (r303634) ut> > +++ head/print/ghostscript8/Makefile.drivers Tue Sep 4 05:21:38 2012 ut> (r303635) ut> > @@ -13,9 +13,11 @@ OPTIONS_X11= \ ut> > GS_x11rg16x \ ut> > GS_x11rg32x ut> > ut> > +.if ${ARCH:Mamd64} || ${ARCH:Mi386} ut> > OPTIONS_SVGALIB= \ ut> > GS_lvga256 \ ut> > GS_vgalib ut> > +.endif ut> > ut> > OPTIONS_ICONV= \ ut> > GS_oprp \ ut> > ut> > Modified: head/print/ghostscript9/Makefile ut> > ut> ============================================================================== ut> > --- head/print/ghostscript9/Makefile Tue Sep 4 03:05:23 2012 ut> (r303634) ut> > +++ head/print/ghostscript9/Makefile Tue Sep 4 05:21:38 2012 ut> (r303635) ut> > @@ -95,8 +95,8 @@ MLINKS= gslp.1 gsbj.1 \ ut> > ut> > EXCLUDE_DIRS= freetype jbig2dec jpeg expat jasper libpng tiff zlib ut> > ut> > -.include "Makefile.drivers" ut> > .include ut> > +.include "Makefile.drivers" ut> ut> You can't introduce OPTIONS after ut> bsd.port.pre.mk; this has broken INDEX because the options are no longer ut> properly recognised. ut> ut> Please revert! Gr, sorry. I was careless about that. Reverted the change and added if-endif pairs to fix the original issue. Thank you for pointing out it. -- Hiroki ----Security_Multipart(Wed_Sep__5_04_09_12_2012_400)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlBGUdgACgkQTyzT2CeTzy0E0QCgu48jwFfQez9c8KrPDtk0koLq jOUAnRB7wF0A6dmzd/VZ6VR+Jnm+vFUH =w77M -----END PGP SIGNATURE----- ----Security_Multipart(Wed_Sep__5_04_09_12_2012_400)----