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 9AD23138CBD for ; Tue, 10 Mar 2015 02:55:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 190EAE09CC; Tue, 10 Mar 2015 02:55:17 +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 AB813E09CC for ; Tue, 10 Mar 2015 02:55:16 +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 33CD53407ED for ; Tue, 10 Mar 2015 02:55:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 758FB136BF for ; Tue, 10 Mar 2015 02:55:10 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1425956049.7cbfbed032548f9a5fab2baee412a84cd5bfc139.leio@gentoo> Subject: [gentoo-commits] dev/leio:master commit in: media-libs/raspberrypi-userland/ X-VCS-Repository: dev/leio X-VCS-Files: media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20150214.ebuild X-VCS-Directories: media-libs/raspberrypi-userland/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 7cbfbed032548f9a5fab2baee412a84cd5bfc139 X-VCS-Branch: master Date: Tue, 10 Mar 2015 02:55:10 +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: 7a3d16fc-cafc-4c3e-9e77-f5ffbd8697ab X-Archives-Hash: 8a78433430b0a1f933b40bef13b50f27 commit: 7cbfbed032548f9a5fab2baee412a84cd5bfc139 Author: Mart Raudsepp gentoo org> AuthorDate: Tue Mar 10 02:54:09 2015 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Tue Mar 10 02:54:09 2015 +0000 URL: https://gitweb.gentoo.org/dev/leio.git/commit/?id=7cbfbed0 raspberrypi-userland: Claim a mesa version for wayland-egl package Otherwise versioned checks for wayland-egl package fail. In particular, gst-plugins-bad needs at least version 9.0 (probably a mesa[egl] ver) .../raspberrypi-userland/raspberrypi-userland-0_pre20150214.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20150214.ebuild b/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20150214.ebuild index c6f42a6..33d8520 100644 --- a/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20150214.ebuild +++ b/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20150214.ebuild @@ -74,5 +74,9 @@ src_install() { doins "${FILESDIR}"/bcm_host.pc doins "${FILESDIR}"/egl.pc doins "${FILESDIR}"/glesv2.pc - use wayland && doins "${ED}"/opt/vc/lib/pkgconfig/wayland-egl.pc # Maybe move? + if use wayland; then + # Missing wayland-egl version from the patch; claim 9.0 (a mesa version) for now, so gst-plugins-bad wayland-egl check is happy + sed -i -e 's/Version: /Version: 9.0/' "${ED}"/opt/vc/lib/pkgconfig/wayland-egl.pc + doins "${ED}"/opt/vc/lib/pkgconfig/wayland-egl.pc # Maybe move? + fi }