From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1623520-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 7161D1581E7
	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 5A090E29B9;
	Sun, 21 Apr 2024 22:40:23 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id D2918E29AC
	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 DB902343543
	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 2172B1752
	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.4a8fd664dc57be91be04abb0f82c20c31c8a5e4c.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: 4a8fd664dc57be91be04abb0f82c20c31c8a5e4c
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: 875093e2-559d-4a0a-a43d-94d05f192ff0
X-Archives-Hash: e33b716c4f508b494776b59b3756d362

commit:     4a8fd664dc57be91be04abb0f82c20c31c8a5e4c
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 22:30:53 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=4a8fd664

media-libs/libepoxy: Depend on xorg-proto

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

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

diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 5e82b138f474..bd74879a1c01 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -28,9 +28,14 @@ RDEPEND="
 	media-libs/libglvnd[X?,${MULTILIB_USEDEP}]
 "
 DEPEND="${RDEPEND}
-	X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+	X? (
+		x11-base/xorg-proto
+		x11-libs/libX11[${MULTILIB_USEDEP}]
+	)
+"
 BDEPEND="${PYTHON_DEPS}
-	virtual/pkgconfig"
+	virtual/pkgconfig
+"
 
 PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-use-opengl.pc-without-x.patch )