[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74522] [PATCH 11/73] move libgl provider from mesa to libglvnd+mesa
From: |
The Man |
Subject: |
[bug#74522] [PATCH 11/73] move libgl provider from mesa to libglvnd+mesa |
Date: |
Sun, 24 Nov 2024 21:41:04 -0600 |
Change-Id: I78d884f62af4a0cf7fe6dd0fc980a4063b784f9a
---
gnu/packages/emulators.scm | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 948e588c4c..5b93a745a9 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -220,7 +220,7 @@ (define-public blastem
("shaders" "share/blastem/shaders"))
args))))))
(inputs
- (list glew mesa sdl2 zlib))
+ (list glew libgl sdl2 zlib))
(native-inputs
(list pkg-config))
(home-page "https://www.retrodev.com/blastem/")
@@ -361,7 +361,7 @@ (define-public dolphin-emu
libxrandr
lzo
mbedtls-lts
- mesa
+ libgl
miniupnpc
openal
pugixml
@@ -405,7 +405,7 @@ (define-public dosbox
zlib
alsa-lib
glu
- mesa))
+ libgl))
(home-page "https://www.dosbox.com")
(synopsis "X86 emulator with CGA/EGA/VGA/etc. graphics and sound")
(description "DOSBox is a DOS-emulator that uses the SDL library. DOSBox
@@ -453,7 +453,7 @@ (define-public dosbox-staging
iir
libpng
libslirp
- mesa
+ libgl
opusfile
sdl2
sdl2-image
@@ -571,7 +571,7 @@ (define-public emulation-station
("eigin" ,eigen)
("freeimage" ,freeimage)
("freetype" ,freetype)
- ("mesa" ,mesa)
+ ("libgl" ,libgl)
("sdl2" ,sdl2)))
(synopsis "Video game console emulator front-end")
(description "EmulationStation provides a graphical front-end to a large
@@ -606,7 +606,7 @@ (define-public higan
("gtksourceview-2" ,gtksourceview-2)
("libxrandr" ,libxrandr)
("libxv" ,libxv)
- ("mesa" ,mesa)
+ ("libgl" ,libgl)
("openal" ,openal)
("pulseaudio" ,pulseaudio)
("sdl2" ,sdl2)))
@@ -780,7 +780,7 @@ (define-public mgba
libelf
libepoxy
libpng
- mesa
+ libgl
minizip
ncurses
qtbase-5
@@ -864,7 +864,7 @@ (define-public mupen64plus-core
(list freetype
glu
libpng
- mesa
+ libgl
sdl2
zlib))
(arguments
@@ -1082,7 +1082,7 @@ (define-public mupen64plus-video-arachnoid
(native-inputs
(list pkg-config which))
(inputs
- (list mesa mupen64plus-core))
+ (list libgl mupen64plus-core))
(arguments
'(#:phases
(modify-phases %standard-phases
@@ -1126,7 +1126,7 @@ (define-public mupen64plus-video-glide64
(native-inputs
(list pkg-config which))
(inputs
- (list mesa mupen64plus-core sdl2))
+ (list libgl mupen64plus-core sdl2))
(arguments
'(#:phases
(modify-phases %standard-phases
@@ -1171,7 +1171,7 @@ (define-public mupen64plus-video-glide64mk2
(inputs
(list boost
libpng
- mesa
+ libgl
mupen64plus-core
sdl2
zlib))
@@ -1218,7 +1218,7 @@ (define-public mupen64plus-video-rice
(native-inputs
(list pkg-config which))
(inputs
- (list libpng mesa mupen64plus-core sdl2))
+ (list libpng libgl mupen64plus-core sdl2))
(arguments
'(#:phases
(modify-phases %standard-phases
@@ -1418,7 +1418,7 @@ (define-public mupen64plus-video-gliden64
(add-after 'chdir 'generate-Revision.h
(lambda _
(invoke "sh" "getRevision.sh" "--nogit"))))))
- (inputs (list freetype libpng mesa xxhash zlib))
+ (inputs (list freetype libpng libgl xxhash zlib))
(home-page "https://github.com/gonetz/GLideN64")
(synopsis "Mupen64Plus GlideN64 video plugin")
(description "GLideN64 is a new generation graphics plugin for Nintendo
@@ -1538,7 +1538,7 @@ (define-public libretro-mupen64plus-nx
(install-file "mupen64plus_next_libretro.so"
(string-append #$output "/lib/libretro/")))))))
(native-inputs (list nasm pkg-config))
- (inputs (list mesa libpng minizip unzip xxhash zlib))
+ (inputs (list libgl libpng minizip unzip xxhash zlib))
(home-page "https://github.com/libretro/mupen64plus-libretro-nx")
(synopsis "Improved Mupen64Plus libretro core")
(description "Mupen64Plus-Next is a N64 emulation library for the
@@ -2455,7 +2455,7 @@ (define-public retroarch-minimal
libxrandr
libxv
mbedtls-lts
- mesa
+ libgl
openal
openssl
pulseaudio
@@ -3487,7 +3487,7 @@ (define-public zsnes
#:phases #~(modify-phases %standard-phases
(delete 'configure)))) ;no configure script
(native-inputs (list nasm pkg-config))
- (inputs (list glib libpng mesa ncurses sdl zlib))
+ (inputs (list glib libpng libgl ncurses sdl zlib))
(home-page "https://www.zsnes.com")
(synopsis "Super Nintendo Entertainment System emulator")
(description "ZSNES is a @acronym{Super Nintendo Entertainment System,
@@ -3627,7 +3627,7 @@ (define-public ppsspp
glslang
libpng
libzip
- mesa
+ libgl
miniupnpc
sdl2
snappy
--
2.46.0
- [bug#74522] [PATCH 07/73] move libgl provider from mesa to libglvnd+mesa, (continued)
- [bug#74522] [PATCH 07/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 06/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 10/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 08/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 05/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 16/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 09/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 12/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 15/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 14/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
- [bug#74522] [PATCH 11/73] move libgl provider from mesa to libglvnd+mesa,
The Man <=
[bug#74522] [PATCH 18/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
[bug#74522] [PATCH 04/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
[bug#74522] [PATCH 19/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24
[bug#74522] [PATCH 20/73] move libgl provider from mesa to libglvnd+mesa, The Man, 2024/11/24