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 BD2E059C9D for ; Fri, 12 Feb 2016 23:32:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EF2721C019; Fri, 12 Feb 2016 23:32:03 +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 41710E0876 for ; Fri, 12 Feb 2016 23:32:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 44072340C20 for ; Fri, 12 Feb 2016 23:32:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25C35CEB for ; Fri, 12 Feb 2016 23:31:59 +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: <1455319870.5c59ac63b4932179366f6c948f02a0f7439b25fc.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.18.ebuild X-VCS-Directories: app-text/ghostscript-gpl/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 5c59ac63b4932179366f6c948f02a0f7439b25fc X-VCS-Branch: master Date: Fri, 12 Feb 2016 23:31:59 +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: cdd5fea6-2bc7-491f-8d0a-679804d48957 X-Archives-Hash: a08f1d1f581f1a83dcff04c24d4d13fb commit: 5c59ac63b4932179366f6c948f02a0f7439b25fc Author: Mike Frysinger gentoo org> AuthorDate: Fri Feb 12 23:30:00 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Feb 12 23:31:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c59ac63 app-text/ghostscript-gpl: fix zlib.h build error #573248 Newer versions of ghostscript refer to the zlib.h header file directly in the makefiles. Since we point it to a bogus place, that fails. Change it to an empty value since checking it for deps is pointless for our builds. app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild index d049c3f..1970779 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.18.ebuild @@ -124,6 +124,10 @@ src_prepare() { sed -i \ -e "/^ZLIBDIR=/s:=.*:=${T}:" \ configure.ac || die + # Some files depend on zlib.h directly. Redirect them. #573248 + sed -i \ + -e '/^zlib_h/s:=.*:=:' \ + base/lib.mak || die # search path fix # put LDFLAGS after BINDIR, bug #383447