From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 508D71388BF for ; Thu, 7 Jan 2016 09:15:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CC09E07EC; Thu, 7 Jan 2016 09:15:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ACD9FE07EC for ; Thu, 7 Jan 2016 09:15:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9AB8A340A74 for ; Thu, 7 Jan 2016 09:15:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45258CB1 for ; Thu, 7 Jan 2016 09:15:48 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1452158130.49a99600e96a5db897428d37c7ba88b3120cb596.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ghostscript-gpl/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild X-VCS-Directories: app-text/ghostscript-gpl/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 49a99600e96a5db897428d37c7ba88b3120cb596 X-VCS-Branch: master Date: Thu, 7 Jan 2016 09:15:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d3d054a1-13be-4f46-8d03-88de1bd5e2d9 X-Archives-Hash: 578c26a0f1ff48024645adf47d414674 commit: 49a99600e96a5db897428d37c7ba88b3120cb596 Author: Chuan-kai Lin google com> AuthorDate: Thu Jan 7 08:53:07 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Jan 7 09:15:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a99600 app-text/ghostscript-gpl: fix pkg-config/endian handling for cross-compiles app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild | 6 +++++- app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild index 84e590c..46321ba 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit autotools eutils multilib versionator flag-o-matic +inherit autotools eutils multilib versionator flag-o-matic toolchain-funcs DESCRIPTION="Ghostscript is an interpreter for the PostScript language and for PDF" HOMEPAGE="http://ghostscript.com/" @@ -143,11 +143,15 @@ src_configure() { FONTPATH="$FONTPATH${FONTPATH:+:}$path" done + # We force the endian configure flags until this is fixed: + # http://bugs.ghostscript.com/show_bug.cgi?id=696498 + PKGCONFIG=$(type -P $(tc-getPKG_CONFIG)) \ econf \ --enable-dynamic \ --enable-freetype \ --enable-fontconfig \ --enable-openjpeg \ + --enable-$(tc-endian)-endian \ --disable-compile-inits \ --with-drivers=ALL \ --with-fontpath="$FONTPATH" \ diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild index a9ba6bf..13e873c 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit autotools eutils multilib versionator flag-o-matic +inherit autotools eutils multilib versionator flag-o-matic toolchain-funcs DESCRIPTION="Ghostscript is an interpreter for the PostScript language and for PDF" HOMEPAGE="http://ghostscript.com/" @@ -148,11 +148,15 @@ src_configure() { FONTPATH="$FONTPATH${FONTPATH:+:}$path" done + # We force the endian configure flags until this is fixed: + # http://bugs.ghostscript.com/show_bug.cgi?id=696498 + PKGCONFIG=$(type -P $(tc-getPKG_CONFIG)) \ econf \ --enable-dynamic \ --enable-freetype \ --enable-fontconfig \ --enable-openjpeg \ + --enable-$(tc-endian)-endian \ --disable-compile-inits \ --with-drivers=ALL \ --with-fontpath="$FONTPATH" \