From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 A680C138334 for ; Sun, 17 Nov 2019 17:51:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0F48E084A; Sun, 17 Nov 2019 17:51:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 99379E084A for ; Sun, 17 Nov 2019 17:51:54 +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 7E20934CF29 for ; Sun, 17 Nov 2019 17:51:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3DCF8AA for ; Sun, 17 Nov 2019 17:51:50 +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: <1574013081.fc115d74f4ef6895c0ae06c65ff1cd11b9981592.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cogl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/cogl/cogl-1.22.4.ebuild X-VCS-Directories: media-libs/cogl/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: fc115d74f4ef6895c0ae06c65ff1cd11b9981592 X-VCS-Branch: master Date: Sun, 17 Nov 2019 17:51:50 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 97154c59-7ff7-4542-b392-6b906e9223e7 X-Archives-Hash: 4364e110a1cbe8a07d4f337ef0f006d8 commit: fc115d74f4ef6895c0ae06c65ff1cd11b9981592 Author: Mart Raudsepp gentoo org> AuthorDate: Sun Nov 17 17:50:53 2019 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sun Nov 17 17:51:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc115d74 media-libs/cogl: add missing mesa[egl] dep for USE=kms If any EGL platform is enabled, it requires the EGL headers. This includes kms-egl-platform, which also sets NEED_EGL in configure.ac. Remove rm -f option usage while here (it makes the `|| die` useless and makes us not notice once this call isn't necessary anymore). Closes: https://bugs.gentoo.org/613728 Package-Manager: Portage-2.3.69, Repoman-2.3.12 Signed-off-by: Mart Raudsepp gentoo.org> media-libs/cogl/cogl-1.22.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/cogl/cogl-1.22.4.ebuild b/media-libs/cogl/cogl-1.22.4.ebuild index 2191b69cd4a..12bd445b80f 100644 --- a/media-libs/cogl/cogl-1.22.4.ebuild +++ b/media-libs/cogl/cogl-1.22.4.ebuild @@ -36,7 +36,7 @@ COMMON_DEPEND=" media-libs/gst-plugins-base:1.0 ) introspection? ( >=dev-libs/gobject-introspection-1.34.2:= ) kms? ( - media-libs/mesa[gbm] + media-libs/mesa[egl,gbm] x11-libs/libdrm:= ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) wayland? ( @@ -114,5 +114,5 @@ src_install() { gnome2_src_install # Remove silly examples-data directory - rm -rvf "${ED}/usr/share/cogl/examples-data/" || die + rm -rv "${ED}/usr/share/cogl/examples-data/" || die }