From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1054130-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 99F1E138334
	for <garchives@archives.gentoo.org>; Thu, 25 Oct 2018 21:20:53 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 37862E0895;
	Thu, 25 Oct 2018 21:20:51 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 0C40CE0895
	for <gentoo-commits@lists.gentoo.org>; Thu, 25 Oct 2018 21:20:50 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 61D17335C7D
	for <gentoo-commits@lists.gentoo.org>; Thu, 25 Oct 2018 21:20:49 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id C25AA442
	for <gentoo-commits@lists.gentoo.org>; Thu, 25 Oct 2018 21:20:47 +0000 (UTC)
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" <zlogene@gentoo.org>
Message-ID: <1540502439.0209fa45edf95ec1dfa3d01d6fa008a2879aa947.zlogene@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura-pdf-mupdf/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.3.4.ebuild
X-VCS-Directories: app-text/zathura-pdf-mupdf/
X-VCS-Committer: zlogene
X-VCS-Committer-Name: Mikle Kolyada
X-VCS-Revision: 0209fa45edf95ec1dfa3d01d6fa008a2879aa947
X-VCS-Branch: master
Date: Thu, 25 Oct 2018 21:20:47 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 6bb84ba7-b94c-4e6d-8860-d1f5a939c016
X-Archives-Hash: 21bd9497828fd8698fc5cbbd463b994c

commit:     0209fa45edf95ec1dfa3d01d6fa008a2879aa947
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 25 21:20:00 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Oct 25 21:20:39 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0209fa45

app-text/zathura-pdf-mupdf: fix build without mupdf-thrid

app-text/mupdf does not provide mupdf-thrid anymore.
Drop it from the build-system.

Closes: https://bugs.gentoo.org/669070
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.3.4.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.3.4.ebuild b/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.3.4.ebuild
index 69b7288a1bf..dcf685afa7a 100644
--- a/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.3.4.ebuild
+++ b/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.3.4.ebuild
@@ -29,3 +29,8 @@ DEPEND="app-text/mupdf
 RDEPEND="${DEPEND}"
 
 BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	sed -i -e '/mupdfthird/d' meson.build || die "sed failed"
+	default
+}