From owner-svn-ports-head@FreeBSD.ORG Tue Sep 4 05:21:39 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 5977B106566C; Tue, 4 Sep 2012 05:21:39 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB8D8FC16; Tue, 4 Sep 2012 05:21:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q845Ldgt099300; Tue, 4 Sep 2012 05:21:39 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q845Lc7f099295; Tue, 4 Sep 2012 05:21:38 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201209040521.q845Lc7f099295@svn.freebsd.org> From: Hiroki Sato Date: Tue, 4 Sep 2012 05:21:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: 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 05:21:39 -0000 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 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" .include "${FILESDIR}/Makefile.drivers_post" .for D in ${OPTIONS_DEFINE:MGS_*:S/^GS_//} Modified: head/print/ghostscript9/Makefile.drivers ============================================================================== --- head/print/ghostscript9/Makefile.drivers Tue Sep 4 03:05:23 2012 (r303634) +++ head/print/ghostscript9/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 \