From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1623521-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id CAA691581E7
	for <garchives@archives.gentoo.org>; Sun, 21 Apr 2024 22:40:24 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 61FFAE29C0;
	Sun, 21 Apr 2024 22:40:23 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id A556FE29B9
	for <gentoo-commits@lists.gentoo.org>; Sun, 21 Apr 2024 22:40:22 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id D0ED7343540
	for <gentoo-commits@lists.gentoo.org>; Sun, 21 Apr 2024 22:40:21 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DCA01741
	for <gentoo-commits@lists.gentoo.org>; Sun, 21 Apr 2024 22:40:20 +0000 (UTC)
From: "Matt Turner" <mattst88@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, "Matt Turner" <mattst88@gentoo.org>
Message-ID: <1713739213.65874513a2b51ba7bf7ba0b053ba6b2f8732e458.mattst88@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/libepoxy/libepoxy-9999.ebuild
X-VCS-Directories: media-libs/libepoxy/
X-VCS-Committer: mattst88
X-VCS-Committer-Name: Matt Turner
X-VCS-Revision: 65874513a2b51ba7bf7ba0b053ba6b2f8732e458
X-VCS-Branch: master
Date: Sun, 21 Apr 2024 22:40:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 8041ba1e-54cd-4e8a-8e0a-05716420d88f
X-Archives-Hash: e2279d3f06874d5420564d00c5127f4f

commit:     65874513a2b51ba7bf7ba0b053ba6b2f8732e458
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 22:30:30 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 22:40:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65874513

media-libs/libepoxy: RDEPEND on libglvnd[X?]

And remove IUSE=+egl at the same time since libglvnd always provides libEGL.

Bug: https://bugs.gentoo.org/929993
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 media-libs/libepoxy/libepoxy-9999.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 5bc5cc5fd964..5e82b138f474 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -20,12 +20,13 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="+egl test +X"
+IUSE="test +X"
 
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-	egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
+	media-libs/libglvnd[X?,${MULTILIB_USEDEP}]
+"
 DEPEND="${RDEPEND}
 	X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
 BDEPEND="${PYTHON_DEPS}
@@ -35,7 +36,7 @@ PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-use-opengl.pc-without-x.patch )
 
 multilib_src_configure() {
 	local emesonargs=(
-		-Degl=$(usex egl)
+		-Degl=yes
 		-Dglx=$(usex X)
 		$(meson_use X x11)
 		$(meson_use test tests)