commit: 6208af8875d0e69b7b8bb9f2b7497f0cc858c438 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Tue Feb 27 19:53:01 2024 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Wed Dec 11 17:21:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6208af88
virtual/opengl: Depend on libglvnd instead of mesa Bug: https://bugs.gentoo.org/925627 Closes: https://bugs.gentoo.org/301337 Closes: https://bugs.gentoo.org/890334 Closes: https://github.com/gentoo/gentoo/pull/35556 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> profiles/default/linux/package.use.force | 6 ++++++ virtual/opengl/opengl-8.ebuild | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/profiles/default/linux/package.use.force b/profiles/default/linux/package.use.force new file mode 100644 index 000000000000..155c529b4d30 --- /dev/null +++ b/profiles/default/linux/package.use.force @@ -0,0 +1,6 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Matt Turner <[email protected]> (2024-12-11) +# Forced on to avoid potential breakage. +virtual/opengl X diff --git a/virtual/opengl/opengl-8.ebuild b/virtual/opengl/opengl-8.ebuild new file mode 100644 index 000000000000..659c767daad7 --- /dev/null +++ b/virtual/opengl/opengl-8.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib-build + +DESCRIPTION="Virtual for OpenGL implementation" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="X" + +RDEPEND=" + || ( + media-libs/libglvnd[X?,${MULTILIB_USEDEP}] + dev-util/mingw64-runtime + )"
