From owner-svn-ports-head@FreeBSD.ORG Tue Sep 4 14:33:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDA87106566C; Tue, 4 Sep 2012 14:33:08 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id C8C918FC0C; Tue, 4 Sep 2012 14:33:07 +0000 (UTC) Received: by bkcje9 with SMTP id je9so3152420bkc.13 for ; Tue, 04 Sep 2012 07:33:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=/6DPuIdZ0+B8qZ37kVGqHooFcRI9tPQarJXCocvjRZg=; b=oev8L+XHHKiIF5ep4sYl0hgh+v7A/FutYPgPI5/V91OlijwlSXPNipyiaBiNOpKcKL CrimXgJU1hzdzondzKKI7G0bI5fYWTWrYVGz5UXIGJhRTyDbOn1acUuJc95JeRiya8tH H7mdFlstM9DT7ZmrGnGsTtbi67nlpqET7G2jiqajnBQyI+7e/XeTMnobjwDOYyjzcCZj vq8SeinxJNbBVsTORkG1E0hgiV7R12wk2SXRSp22c+qA9u8rW+lwGmnC46kIt8etF/zQ 9ILzim6n8rPqQI1tumYPdH7wafr5FeITEYQ1l6gSvzbtf9Sl6LAgRaJdpfUMyxciK587 OP6A== MIME-Version: 1.0 Received: by 10.205.118.138 with SMTP id fq10mr8493609bkc.58.1346769180119; Tue, 04 Sep 2012 07:33:00 -0700 (PDT) Received: by 10.204.10.141 with HTTP; Tue, 4 Sep 2012 07:32:59 -0700 (PDT) Received: by 10.204.10.141 with HTTP; Tue, 4 Sep 2012 07:32:59 -0700 (PDT) In-Reply-To: <201209040521.q845Lc7f099295@svn.freebsd.org> References: <201209040521.q845Lc7f099295@svn.freebsd.org> Date: Tue, 4 Sep 2012 15:32:59 +0100 Message-ID: From: Chris Rees To: Hiroki Sato Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 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 14:33:08 -0000 On 4 Sep 2012 06:21, "Hiroki Sato" wrote: > > Author: hrs > Date: Tue Sep 4 05:21:38 2012 > New Revision: 303635 > URL: http://svn.freebsd.org/changeset/ports/303635 > > Log: > Fix build on !i386 && !amd64. > > PR: ports/171253 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=171253 > > Modified: > head/print/ghostscript8/Makefile > head/print/ghostscript8/Makefile.drivers > head/print/ghostscript9/Makefile > head/print/ghostscript9/Makefile.drivers > > Modified: head/print/ghostscript8/Makefile > ============================================================================== > --- head/print/ghostscript8/Makefile Tue Sep 4 03:05:23 2012 (r303634) > +++ head/print/ghostscript8/Makefile Tue Sep 4 05:21:38 2012 (r303635) > @@ -90,8 +90,8 @@ MLINKS= gslp.1 gsbj.1 \ > CIDFONTDIR= ${DATADIR}/${PORTVERSION}/Resource > EXCLUDE_DIRS= jbig2dec jpeg expat jasper libpng tiff zlib > > -.include "Makefile.drivers" > .include > +.include "Makefile.drivers" > .include "${FILESDIR}/Makefile.drivers_post" > > .for D in ${OPTIONS_DEFINE:MGS_*:S/^GS_//} > > Modified: head/print/ghostscript8/Makefile.drivers > ============================================================================== > --- head/print/ghostscript8/Makefile.drivers Tue Sep 4 03:05:23 2012 (r303634) > +++ head/print/ghostscript8/Makefile.drivers Tue Sep 4 05:21:38 2012 (r303635) > @@ -13,9 +13,11 @@ OPTIONS_X11= \ > GS_x11rg16x \ > GS_x11rg32x > > +.if ${ARCH:Mamd64} || ${ARCH:Mi386} > OPTIONS_SVGALIB= \ > GS_lvga256 \ > GS_vgalib > +.endif > > OPTIONS_ICONV= \ > GS_oprp \ > > Modified: head/print/ghostscript9/Makefile > ============================================================================== > --- head/print/ghostscript9/Makefile Tue Sep 4 03:05:23 2012 (r303634) > +++ head/print/ghostscript9/Makefile Tue Sep 4 05:21:38 2012 (r303635) > @@ -95,8 +95,8 @@ MLINKS= gslp.1 gsbj.1 \ > > EXCLUDE_DIRS= freetype jbig2dec jpeg expat jasper libpng tiff zlib > > -.include "Makefile.drivers" > .include > +.include "Makefile.drivers" You can't introduce OPTIONS after bsd.port.pre.mk; this has broken INDEX because the options are no longer properly recognised. Please revert! Chris