]> git.pld-linux.org Git - packages/Mesa.git/blame - Mesa.spec
up to 23.1.3
[packages/Mesa.git] / Mesa.spec
CommitLineData
68c4c1b5
JB
1# TODO:
2# - libtizonia >= 0.10.0 as an alternative for bellagio?
3# - bcond for perfetto peformance analysis? (BR: perfetto)
e1833810 4#
6299b3cd 5# Conditional build:
5eb992a8 6%bcond_without gallium # gallium drivers
e4ca490f 7%bcond_without gallium_i915 # gallium i915 driver
5b103bd4 8%bcond_without gallium_nouveau # gallium nouveau driver
56313830 9%bcond_without gallium_radeon # gallium radeon drivers
9b8203d9 10%bcond_without gallium_rusticl # gallium OpenCL frontend
428251cb 11%bcond_without gallium_zink # gallium zink driver (based on vulkan)
45991a71 12%bcond_without egl # EGL libraries
a651d613 13%bcond_without gbm # Graphics Buffer Manager
1f730540 14%bcond_without nine # Nine Direct3D 9+ state tracker (for Wine)
07725da0 15%bcond_without opencl # OpenCL support
428251cb 16%bcond_without opencl_spirv # OpenCL SPIRV support
d91f0cac 17%bcond_without ocl_icd # OpenCL as ICD (installable client driver)
fe7a0e0e 18%bcond_without glvnd # OpenGL vendor neutral dispatcher support
4bacd84c 19%bcond_without omx # OpenMAX (Bellagio OMXIL) support
3f1b1b5d 20%bcond_without va # VA library
24b30bc6 21%bcond_without wayland # Wayland EGL
40c26533 22%bcond_without xa # XA state tracker (for vmwgfx xorg driver)
03cdb094 23%bcond_without radv # disable build of the radeon Vulkan driver
ebbf71b7 24%bcond_with sse2 # SSE2 instructions
415f6760
JB
25%bcond_with hud_extra # HUD block/NIC I/O HUD stats support
26%bcond_with lm_sensors # HUD lm_sensors support
34f695f1 27%bcond_with tests # tests
d70abe90 28#
d70abe90
JB
29# glapi version (glapi tables in dri drivers and libglx must be in sync);
30# set to current Mesa version on ABI break, when xserver tables get regenerated
31# (until they start to be somehow versioned themselves)
c6305e3e 32%define glapi_ver 7.1.0
e0e9f02c 33# other packages
6ec7f8a2 34%define libdrm_ver 2.4.110
31bd116a 35%define dri2proto_ver 2.8
c6305e3e 36%define glproto_ver 1.4.14
9c1f9f63 37%define zlib_ver 1.2.8
111ed145 38%define wayland_ver 1.18
fe7a0e0e 39%define libglvnd_ver 1.3.4-2
1dce271a 40%define llvm_ver 11.0.0
9b8203d9 41%define gcc_ver 6:5
2f1a1517 42
12cbb35f 43%if %{without gallium}
ef3a19d3 44%undefine with_gallium_i915
12cbb35f
JR
45%undefine with_gallium_nouveau
46%undefine with_gallium_radeon
9b8203d9 47%undefine with_gallium_rusticl
1f730540 48%undefine with_nine
12cbb35f
JR
49%undefine with_omx
50%undefine with_opencl
0c8a4197 51%undefine with_va
12cbb35f
JR
52%undefine with_xa
53%endif
54
55%if %{without egl}
56%undefine with_gbm
57%undefine with_wayland
58%endif
59
07725da0 60%if %{without opencl}
9b8203d9 61%undefine with_gallium_rusticl
07725da0
JK
62%undefine with_ocl_icd
63%endif
64
9b8203d9 65%if %{with gallium}
50139961 66%define with_vdpau 1
50139961
JP
67%endif
68
ebbf71b7
JP
69%ifarch %{x86_with_sse2}
70%define with_sse2 1
71%endif
72
e1833810 73Summary: Free OpenGL implementation
54181d82 74Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
e9b3ff7a 75Name: Mesa
75196731 76Version: 23.1.3
16105c86 77Release: 1
3dc87f1a 78License: MIT (core) and others - see license.html file
e9b3ff7a 79Group: X11/Libraries
39049918
JK
80#Source0: ftp://ftp.freedesktop.org/pub/mesa/mesa-%{version}.tar.xz
81## Source0-md5: 7c61a801311fb8d2f7b3cceb7b5cf308
20b98673 82Source0: https://archive.mesa3d.org/mesa-%{version}.tar.xz
75196731
JP
83# Source0-md5: 0dce0342dbf08dc5afbaf51e729da1a1
84Patch0: panfrost-mem-leak.patch
0c8a4197 85URL: https://www.mesa3d.org/
9b8203d9
JP
86%if %{with opencl_spirv} || %{with gallium_rusticl}
87BuildRequires: SPIRV-LLVM-Translator-devel >= 8.0.1.3
88%endif
428251cb 89%{?with_gallium_zink:BuildRequires: Vulkan-Loader-devel}
0f738b6d 90BuildRequires: bison > 2.3
1ea9613c 91%{?with_opencl:BuildRequires: clang-devel >= %{llvm_ver}}
43f54f5a 92BuildRequires: elfutils-devel
fae799e6 93BuildRequires: expat-devel >= 1.95
944c9340 94BuildRequires: flex
1ea9613c 95BuildRequires: gcc >= %{gcc_ver}
be3fe36c
JP
96%ifarch %{armv6}
97BuildRequires: libatomic-devel
98%endif
41aca213 99BuildRequires: libdrm-devel >= %{libdrm_ver}
adda9eb9 100%{?with_glvnd:BuildRequires: libglvnd-devel >= %{libglvnd_ver}}
59f12de8 101BuildRequires: libselinux-devel
1ea9613c
JK
102BuildRequires: libstdc++-devel >= %{gcc_ver}
103BuildRequires: libunwind-devel
104%{?with_va:BuildRequires: libva-devel}
bc0757d7 105%{?with_va:BuildRequires: pkgconfig(libva) >= 1.8.0}
50139961 106%{?with_vdpau:BuildRequires: libvdpau-devel >= 1.1}
61bd8431 107BuildRequires: libxcb-devel >= 1.13
1ea9613c
JK
108%{?with_gallium:BuildRequires: llvm-devel >= %{llvm_ver}}
109%{?with_radv:BuildRequires: llvm-devel >= %{llvm_ver}}
9b8203d9
JP
110%if %{with opencl} || %{with gallium_rusticl}
111BuildRequires: llvm-libclc
112%endif
4bacd84c 113%{?with_omx:BuildRequires: libomxil-bellagio-devel}
325d9917 114BuildRequires: meson >= 1.0.0
64379599 115BuildRequires: ninja >= 1.5
a6c5fc6c 116BuildRequires: pkgconfig
c1d2b5e2 117BuildRequires: pkgconfig(talloc) >= 2.0.1
c7ad0447
JB
118BuildRequires: pkgconfig(xcb-dri2) >= 1.8
119BuildRequires: pkgconfig(xcb-dri3) >= 1.13
120BuildRequires: pkgconfig(xcb-glx) >= 1.8.1
121BuildRequires: pkgconfig(xcb-present) >= 1.13
1ea9613c 122BuildRequires: pkgconfig(xcb-randr) >= 1.12
3f6d195e 123BuildRequires: python3 >= 1:3.2
1ea9613c 124BuildRequires: python3-Mako >= 0.8.0
ebbf71b7 125BuildRequires: rpmbuild(macros) >= 2.007
9b8203d9
JP
126%{?with_gallium_rusticl:BuildRequires: rust >= 1.59}
127%{?with_gallium_rusticl:BuildRequires: rust-bindgen >= 0.58.0}
7cbe00f8 128BuildRequires: sed >= 4.0
9b8203d9
JP
129%if %{with opencl_spirv} || %{with gallium_rusticl}
130BuildRequires: spirv-tools-devel >= 2018.0
131%endif
20b98673 132BuildRequires: tar >= 1:1.22
e4ca490f 133BuildRequires: udev-devel
24b30bc6 134# wayland-{client,server}
83ef4ff1 135%{?with_wayland:BuildRequires: wayland-devel >= %{wayland_ver}}
e4ca490f 136%{?with_wayland:BuildRequires: wayland-protocols >= 1.24}
83ef4ff1 137%{?with_wayland:BuildRequires: wayland-egl-devel >= %{wayland_ver}}
0f738b6d 138BuildRequires: xorg-lib-libX11-devel
994fa6a5 139BuildRequires: xorg-lib-libXext-devel >= 1.0.5
cfad862b 140BuildRequires: xorg-lib-libXfixes-devel >= 2.0
64379599 141BuildRequires: xorg-lib-libXrandr-devel >= 1.3
9850656e 142BuildRequires: xorg-lib-libXxf86vm-devel
4bacd84c 143BuildRequires: xorg-lib-libxshmfence-devel >= 1.1
41aca213 144BuildRequires: xorg-proto-dri2proto-devel >= %{dri2proto_ver}
b8e51e7a 145BuildRequires: xorg-proto-glproto-devel >= %{glproto_ver}
54147717 146%if %{with gallium}
64379599 147%{?with_lm_sensors:BuildRequires: lm_sensors-devel}
20b98673 148BuildRequires: xz
54147717 149%endif
9c1f9f63 150BuildRequires: zlib-devel >= %{zlib_ver}
428251cb 151BuildRequires: zstd-devel
ddde5931 152BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
a0b2836a 153
52c8419a
JB
154# libGLESv1_CM, libGLESv2, libGL, libOSMesa:
155# _glapi_tls_Dispatch is defined in libglapi, but it's some kind of symbol ldd -r doesn't notice(?)
e3221d38 156%define skip_post_check_so libGLESv1_CM.so.1.* libGLESv2.so.2.* libGL.so.1.* libOSMesa.so.* libGLX_mesa.so.0.*
04c3cb73 157
a0b2836a 158%description
a70fde83 159Mesa is a 3-D graphics library with an API which is very similar to
a5e5e963 160that of OpenGL(R). To the extent that Mesa utilizes the OpenGL command
a70fde83 161syntax or state machine, it is being used with authorization from
a5e5e963
JB
162Silicon Graphics, Inc. However, the author does not possess an OpenGL
163license from SGI, and makes no claim that Mesa is in any way a
164compatible replacement for OpenGL or associated with SGI.
a0b2836a 165
f77f03b8
JR
166%description -l pl.UTF-8
167Mesa jest biblioteką grafiki 3D z API bardzo podobnym do OpenGL(R). Do
168tego stopnia, że Mesa używa składni i automatu OpenGL jest używana z
169autoryzacją Silicon Graphics, Inc. Jednak autor nie posiada licencji
170OpenGL od SGI i nie twierdzi, że Mesa jest kompatybilnym zamiennikiem
171OpenGL ani powiązana z SGI.
a0b2836a 172
bb686270 173%package libEGL
ae79139b
JB
174Summary: Mesa implementation of EGL Native Platform Graphics Interface library
175Summary(pl.UTF-8): Implementacja Mesa biblioteki interfejsu EGL
176License: MIT
bb686270 177Group: Libraries
c7f22387 178Requires: %{name}-libglapi = %{version}-%{release}
bf8d2f73 179# glx driver in libEGL dlopens libGL.so
bb686270 180Requires: OpenGL >= 1.2
bf8d2f73 181Requires: libdrm >= %{libdrm_ver}
c7ad0447 182Requires: libxcb >= 1.13
111ed145 183%{?with_wayland:Requires: wayland >= %{wayland_ver}}
166bc93f
JB
184%if %{with gbm}
185Requires: %{name}-libgbm = %{version}-%{release}
186%endif
adda9eb9
JB
187%if %{with glvnd}
188Requires: libglvnd-libEGL >= %{libglvnd_ver}
189%endif
7731a383 190Provides: EGL = 1.5
bb686270
AM
191
192%description libEGL
ae79139b
JB
193This package contains shared libEGL - Mesa implementation of EGL
194Native Platform Graphics Interface as specified by Khronos Group:
195<http://www.khronos.org/egl/>.
bb686270
AM
196
197%description libEGL -l pl.UTF-8
ae79139b
JB
198Ten pakiet zawiera bibliotekę współdzieloną libEGL - implementację
199Mesa standardu EGL Native Platform Graphics Interface (interfejsu
200graficznego platformy natywnej) wg specyfikacji Khronos Group:
201<http://www.khronos.org/egl/>.
bb686270
AM
202
203%package libEGL-devel
ae79139b
JB
204Summary: Header files for Mesa implementation of EGL library
205Summary(pl.UTF-8): Pliki nagłówkowe implementacji Mesa biblioteki EGL
206License: MIT
bb686270
AM
207Group: Development/Libraries
208Requires: %{name}-libEGL = %{version}-%{release}
adda9eb9
JB
209Requires: xorg-lib-libX11-devel
210%if %{with glvnd}
211Requires: libglvnd-libEGL-devel >= %{libglvnd_ver}
212%else
213Requires: %{name}-khrplatform-devel = %{version}-%{release}
bf8d2f73 214Requires: libdrm-devel >= %{libdrm_ver}
289dcae3
JB
215Requires: libxcb-devel >= 1.13
216Requires: pkgconfig(xcb-dri2) >= 1.8
217Requires: pkgconfig(xcb-glx) >= 1.8.1
4bacd84c 218Requires: xorg-lib-libXext-devel >= 1.0.5
cfad862b 219Requires: xorg-lib-libXfixes-devel >= 2.0
bf8d2f73 220Requires: xorg-lib-libXxf86vm-devel
adda9eb9 221%endif
521fe546 222%if %{without glvnd}
7731a383 223Provides: EGL-devel = 1.5
521fe546 224%endif
0504a5f6 225Obsoletes: Mesa-libEGL-static < 18.3
bb686270
AM
226
227%description libEGL-devel
ae79139b 228Header files for Mesa implementation of EGL library.
bb686270
AM
229
230%description libEGL-devel -l pl.UTF-8
ae79139b 231Pliki nagłówkowe implementacji Mesa biblioteki EGL.
bb686270 232
f445ed6c
JB
233%package libGL
234Summary: Free Mesa3D implementation of libGL OpenGL library
54181d82 235Summary(pl.UTF-8): Wolnodostępna implementacja Mesa3D biblioteki libGL ze standardu OpenGL
f445ed6c
JB
236License: MIT
237Group: X11/Libraries
c7f22387 238Requires: %{name}-libglapi = %{version}-%{release}
38a2434c 239Requires: libdrm >= %{libdrm_ver}
61bd8431 240Requires: libxcb >= 1.13
adda9eb9
JB
241%if %{with glvnd}
242Requires: libglvnd-libGL >= %{libglvnd_ver}
243%endif
f04faaa6 244Provides: OpenGL = 4.6
f445ed6c 245Provides: OpenGL-GLX = 1.4
9fd74819
JB
246Obsoletes: Mesa < 6.4-2
247Obsoletes: Mesa-dri < 6.4.1-3
b743b90b 248Obsoletes: Mesa-dri-core < 10.0.0
0ff17195 249Obsoletes: Mesa-swr < 22
b18f0f46
AM
250Obsoletes: X11-OpenGL-libGL < 1:7.0.0
251Obsoletes: XFree86-OpenGL-libGL < 1:7.0.0
f445ed6c
JB
252
253%description libGL
254Mesa is a 3-D graphics library with an API which is very similar to
255that of OpenGL(R). To the extent that Mesa utilizes the OpenGL command
256syntax or state machine, it is being used with authorization from
257Silicon Graphics, Inc. However, the author does not possess an OpenGL
258license from SGI, and makes no claim that Mesa is in any way a
259compatible replacement for OpenGL or associated with SGI.
260
f04faaa6 261This package contains libGL which implements OpenGL 4.6 and GLX 1.4
f445ed6c
JB
262specifications. It uses DRI for rendering.
263
f77f03b8
JR
264%description libGL -l pl.UTF-8
265Mesa jest biblioteką grafiki 3D z API bardzo podobnym do OpenGL(R). Do
266tego stopnia, że Mesa używa składni i automatu OpenGL jest używana z
267autoryzacją Silicon Graphics, Inc. Jednak autor nie posiada licencji
268OpenGL od SGI i nie twierdzi, że Mesa jest kompatybilnym zamiennikiem
269OpenGL ani powiązana z SGI.
f445ed6c 270
f04faaa6 271Ten pakiet zawiera libGL implementującą specyfikacje OpenGL 4.6 oraz
f77f03b8 272GLX 1.4. Używa DRI do renderowania.
f445ed6c
JB
273
274%package libGL-devel
275Summary: Header files for Mesa3D libGL library
54181d82 276Summary(pl.UTF-8): Pliki nagłówkowe biblioteki libGL z projektu Mesa3D
f445ed6c
JB
277License: MIT
278Group: X11/Development/Libraries
adda9eb9
JB
279%if %{with glvnd}
280Requires: libglvnd-libGL-devel >= %{libglvnd_ver}
281%else
2823211a 282Requires: %{name}-khrplatform-devel = %{version}-%{release}
adda9eb9 283Requires: %{name}-libGL = %{version}-%{release}
37d71b73 284Requires: libdrm-devel >= %{libdrm_ver}
289dcae3
JB
285Requires: libxcb-devel >= 1.13
286Requires: pkgconfig(xcb-dri2) >= 1.8
287Requires: pkgconfig(xcb-glx) >= 1.8.1
875da849 288Requires: xorg-lib-libX11-devel
4bacd84c 289Requires: xorg-lib-libXext-devel >= 1.0.5
289dcae3 290Requires: xorg-lib-libXfixes-devel >= 2.0
41aca213 291Requires: xorg-lib-libXxf86vm-devel
eb081680 292%endif
e261c0c1 293Suggests: OpenGL-doc-man
521fe546 294%if %{without glvnd}
6299b3cd 295Provides: OpenGL-GLX-devel = 1.4
55716716 296Provides: OpenGL-devel = 4.6
521fe546 297%endif
9fd74819 298Obsoletes: Mesa-devel < 6.4-2
0504a5f6
JB
299Obsoletes: Mesa-libGL-static < 18.3
300Obsoletes: Mesa-static < 6.4-2
b18f0f46
AM
301Obsoletes: X11-OpenGL-devel < 1:7.0.0
302Obsoletes: X11-OpenGL-devel-base < 1:7.0.0
0504a5f6 303Obsoletes: X11-OpenGL-static < 1:7.0.0
b18f0f46
AM
304Obsoletes: XFree86-OpenGL-devel < 1:7.0.0
305Obsoletes: XFree86-OpenGL-devel-base < 1:7.0.0
0504a5f6 306Obsoletes: XFree86-OpenGL-static < 1:7.0.0
a0b2836a 307
f445ed6c
JB
308%description libGL-devel
309Header files for Mesa3D libGL library.
a0b2836a 310
f77f03b8
JR
311%description libGL-devel -l pl.UTF-8
312Pliki nagłówkowe biblioteki libGL z projektu Mesa3D.
e31e9d24 313
278406ce
JB
314%package libGLES
315Summary: Mesa implementation of GLES (OpenGL ES) libraries
316Summary(pl.UTF-8): Implementacja Mesa bibliotek GLES (OpenGL ES)
317Group: Libraries
c7f22387 318Requires: %{name}-libglapi = %{version}-%{release}
adda9eb9
JB
319%if %{with glvnd}
320Requires: libglvnd-libGLES >= %{libglvnd_ver}
321%endif
95034bc4
JB
322Provides: OpenGLES
323Provides: OpenGLESv1 = 1.1
324Provides: OpenGLESv2 = 2.0
4894ccf6 325Provides: OpenGLESv3 = 3.2
278406ce
JB
326
327%description libGLES
328This package contains shared libraries of Mesa implementation of GLES
329(OpenGL ES) - cross-platform API for full-function 2D and 3D graphics
330on embedded systems. OpenGL ES specification can be found on Khronos
cc59a107 331Group site: <http://www.khronos.org/opengles/>. Mesa implements OpenGL
428251cb 332ES 1.1 and 2.0/3.2.
278406ce
JB
333
334%description libGLES -l pl.UTF-8
335Ten pakiet zawiera biblioteki współdzielone implementacji Mesa
336standardu GLES (OpenGL ES) - wieloplatformowego API do w pełni
337funkcjonalnej grafiki 2D i 3D na systemach wbudowanych. Specyfikację
338OpenGL ES można znaleźć na stronie Khronos Group:
cc59a107 339<http://www.khronos.org/opengles/>. Mesa zawiera implementacją OpenGL
428251cb 340ES 1.1 i 2.0/3.2.
278406ce
JB
341
342%package libGLES-devel
343Summary: Header files for Mesa GLES libraries
344Summary(pl.UTF-8): Pliki nagłówkowe bibliotek Mesa GLES
345Group: Development/Libraries
adda9eb9
JB
346Requires: %{name}-libGLES = %{version}-%{release}
347%if %{with glvnd}
348Requires: libglvnd-libGLES-devel >= %{libglvnd_ver}
349%else
166bc93f
JB
350Requires: %{name}-khrplatform-devel = %{version}-%{release}
351# <EGL/egl.h> for <GLES/egl.h>
bf8d2f73 352Requires: %{name}-libEGL-devel = %{version}-%{release}
adda9eb9 353%endif
521fe546 354%if %{without glvnd}
95034bc4
JB
355Provides: OpenGLES-devel
356Provides: OpenGLESv1-devel = 1.1
357Provides: OpenGLESv2-devel = 2.0
4894ccf6 358Provides: OpenGLESv3-devel = 3.2
521fe546 359%endif
278406ce
JB
360
361%description libGLES-devel
362Header files for Mesa GLES libraries.
363
364%description libGLES-devel -l pl.UTF-8
365Pliki nagłówkowe bibliotek Mesa GLES.
366
f4a8c5f6
JB
367%package libOSMesa
368Summary: OSMesa (off-screen renderer) library
369Summary(pl.UTF-8): Biblioteka OSMesa (renderująca bitmapy w pamięci)
370License: MIT
371Group: Libraries
9c1f9f63 372Requires: zlib >= %{zlib_ver}
f4a8c5f6
JB
373
374%description libOSMesa
375OSMesa (off-screen renderer) library.
376
377%description libOSMesa -l pl.UTF-8
378Biblioteka OSMesa (renderująca bitmapy w pamięci).
379
380%package libOSMesa-devel
381Summary: Header file for OSMesa (off-screen renderer) library
382Summary(pl.UTF-8): Plik nagłówkowy biblioteki OSMesa (renderującej bitmapy w pamięci)
383License: MIT
384Group: Development/Libraries
385Requires: %{name}-libOSMesa = %{version}-%{release}
386# for <GL/gl.h> only
387Requires: OpenGL-devel
bf8d2f73 388Requires: libselinux-devel
0504a5f6 389Obsoletes: Mesa-libOSMesa-static < 18.3
f4a8c5f6
JB
390
391%description libOSMesa-devel
392Header file for OSMesa (off-screen renderer) library.
393
394%description libOSMesa-devel -l pl.UTF-8
395Plik nagłówkowy biblioteki OSMesa (renderującej bitmapy w pamięci).
396
ff879d59
JK
397%package OpenCL-icd
398Summary: Mesa implementation of OpenCL (Compuing Language) API ICD
399Summary(pl.UTF-8): Implementacja Mesa API OpenCL (języka obliczeń) ICD
400License: MIT
401Group: Libraries
402Requires: filesystem >= 4.0-29
403Requires: libdrm >= %{libdrm_ver}
404Requires: llvm-libclc
9c1f9f63 405Requires: zlib >= %{zlib_ver}
ff879d59 406Provides: OpenCL = 1.1
e62c11c2 407Provides: ocl-icd-driver
ff879d59
JK
408
409%description OpenCL-icd
410This package contains Mesa implementation of OpenCL - standard for
411cross-platform, parallel programming of modern processors found in
412personal computers, servers and handheld/embedded devices. OpenCL
413specification can be found on Khronos Group site:
414<http://www.khronos.org/opencl/>. Mesa implements OpenCL 1.1.
415
416The implementation is provided as an installable client driver (ICD)
417for use with the ocl-icd loader.
418
419%description OpenCL-icd -l pl.UTF-8
420Ten pakiet zawiera implementację Mesa standardu OpenCL - standardu
421wieloplatformowego, równoległego programowania nowoczesnych
422procesorów, jakie znajdują się w komputerach osobistych, serwerach
423oraz urządzeniach przenośnych/wbudowanych. Specyfikację OpenCL można
424znaleźć na stronie Khronos Group: <http://www.khronos.org/opencl/>.
425Mesa zawiera implementację OpenCL w wersji 1.1.
426
289dcae3
JB
427Implementacja dostarczona jest w postaci instalowalnego sterownika
428klienta (ICD), który może być użyty z loaderem ocl-icd.
ff879d59 429
e5bc9334
JB
430%package libOpenCL
431Summary: Mesa implementation of OpenCL (Compuing Language) API
432Summary(pl.UTF-8): Implementacja Mesa API OpenCL (języka obliczeń)
433License: MIT
434Group: Libraries
435Requires: libdrm >= %{libdrm_ver}
bec14093 436Requires: llvm-libclc
e5bc9334
JB
437Provides: OpenCL = 1.1
438
439%description libOpenCL
440This package contains Mesa implementation of OpenCL - standard for
441cross-platform, parallel programming of modern processors found in
442personal computers, servers and handheld/embedded devices. OpenCL
443specification can be found on Khronos Group site:
444<http://www.khronos.org/opencl/>. Mesa implements OpenCL 1.1.
445
446%description libOpenCL -l pl.UTF-8
447Ten pakiet zawiera implementację Mesa standardu OpenCL - standardu
448wieloplatformowego, równoległego programowania nowoczesnych
449procesorów, jakie znajdują się w komputerach osobistych, serwerach
450oraz urządzeniach przenośnych/wbudowanych. Specyfikację OpenCL można
451znaleźć na stronie Khronos Group: <http://www.khronos.org/opencl/>.
452Mesa zawiera implementację OpenCL w wersji 1.1.
453
454%package libOpenCL-devel
455Summary: Header files for Mesa OpenCL library
456Summary(pl.UTF-8): Pliki nagłówkowe biblioteki Mesa OpenCL
457License: MIT
458Group: Development/Libraries
459Requires: %{name}-libOpenCL = %{version}-%{release}
7731a383 460Provides: OpenCL-devel = 1.2
e5bc9334
JB
461
462%description libOpenCL-devel
463Header files for Mesa OpenCL library.
464
465%description libOpenCL-devel -l pl.UTF-8
466Pliki nagłówkowe biblioteki Mesa OpenCL.
467
9b8203d9
JP
468%package Rusticl-icd
469Summary: Rusticl implementation of OpenCL (Compuing Language) API ICD
470Summary(pl.UTF-8): Implementacja Rusticl API OpenCL (języka obliczeń) ICD
471License: MIT
472Group: Libraries
473Requires: filesystem >= 4.0-29
474Requires: libdrm >= %{libdrm_ver}
475Requires: llvm-libclc
476Requires: zlib >= %{zlib_ver}
477Provides: OpenCL = 3.0
478Provides: ocl-icd-driver
479
480%description Rusticl-icd
481This package contains Rusticl implementation of OpenCL - standard for
482cross-platform, parallel programming of modern processors found in
483personal computers, servers and handheld/embedded devices. OpenCL
484specification can be found on Khronos Group site:
485<http://www.khronos.org/opencl/>. Rusticl implements OpenCL 3.0.
486
487The implementation is provided as an installable client driver (ICD)
488for use with the ocl-icd loader.
489
490%description Rusticl-icd -l pl.UTF-8
491Ten pakiet zawiera implementację Rusticl standardu OpenCL - standardu
492wieloplatformowego, równoległego programowania nowoczesnych
493procesorów, jakie znajdują się w komputerach osobistych, serwerach
494oraz urządzeniach przenośnych/wbudowanych. Specyfikację OpenCL można
495znaleźć na stronie Khronos Group: <http://www.khronos.org/opencl/>.
496Rusticl zawiera implementację OpenCL w wersji 3.0.
497
498Implementacja dostarczona jest w postaci instalowalnego sterownika
499klienta (ICD), który może być użyty z loaderem ocl-icd.
500
99b8111b
JP
501%package libgbm
502Summary: Mesa Graphics Buffer Manager library
503Summary(pl.UTF-8): Biblioteka Mesa Graphics Buffer Manager
504Group: Libraries
505Requires: %{name}-libglapi = %{version}-%{release}
506Conflicts: Mesa-libEGL < 8.0.1-2
507
d3cd778a
JB
508%description libgbm
509Mesa Graphics Buffer Manager library.
510
511%description libgbm -l pl.UTF-8
512Biblioteka Mesa Graphics Buffer Manager (zarządcy bufora graficznego).
513
514%package libgbm-devel
515Summary: Header file for Mesa Graphics Buffer Manager library
516Summary(pl.UTF-8): Plik nagłówkowy biblioteki Mesa Graphics Buffer Manager
517Group: Development/Libraries
518Requires: %{name}-libgbm = %{version}-%{release}
d3cd778a
JB
519
520%description libgbm-devel
521Header file for Mesa Graphics Buffer Manager library.
522
523%description libgbm-devel -l pl.UTF-8
524Plik nagłówkowy biblioteki Mesa Graphics Buffer Manager (zarządcy
525bufora graficznego).
526
c7f22387
JB
527%package libglapi
528Summary: Mesa GL API shared library
529Summary(pl.UTF-8): Biblioteka współdzielona Mesa GL API
530Group: Libraries
72a183c7 531Conflicts: Mesa-libEGL < 8.0.1-2
c7f22387
JB
532
533%description libglapi
534Mesa GL API shared library, common for various APIs (EGL, GL, GLES).
535
536%description libglapi -l pl.UTF-8
537Biblioteka współdzielona Mesa GL API, wspólna dla różnych API (EGL,
538GL, GLES).
539
a651d613
JB
540%package libxatracker
541Summary: Xorg Gallium3D accelleration library
542Summary(pl.UTF-8): Biblioteka akceleracji Gallium3D dla Xorg
543Group: X11/Libraries
c7f22387 544Requires: libdrm >= %{libdrm_ver}
9c1f9f63 545Requires: zlib >= %{zlib_ver}
a651d613
JB
546
547%description libxatracker
548Xorg Gallium3D accelleration library (used by new vmwgfx driver).
549
550%description libxatracker -l pl.UTF-8
551Biblioteka akceleracji Gallium3D dla Xorg (używana przez nowy
552sterownik vmwgfx).
553
554%package libxatracker-devel
555Summary: Header files for Xorg Gallium3D accelleration library
556Summary(pl.UTF-8): Pliki nagłówkowe biblioteki akceleracji Gallium3D dla Xorg
557Group: X11/Development/Libraries
558Requires: %{name}-libxatracker = %{version}-%{release}
c7f22387 559Requires: libdrm-devel >= %{libdrm_ver}
a651d613
JB
560
561%description libxatracker-devel
562Header files for Xorg Gallium3D accelleration library.
563
564%description libxatracker-devel -l pl.UTF-8
565Pliki nagłówkowe biblioteki akceleracji Gallium3D dla Xorg.
566
166bc93f
JB
567%package khrplatform-devel
568Summary: Khronos platform header file
569Summary(pl.UTF-8): Plik nagłówkowy platformy Khronos
570Group: Development/Libraries
fdb9533a 571Provides: khrplatform-devel
72a183c7 572Conflicts: Mesa-libEGL-devel < 8.0.1-2
166bc93f
JB
573
574%description khrplatform-devel
575Khronos platform header file.
576
577%description khrplatform-devel -l pl.UTF-8
578Plik nagłówkowy platformy Khronos.
579
37d71b73
JB
580%package dri-devel
581Summary: Direct Rendering Infrastructure interface header file
582Summary(pl.UTF-8): Plik nagłówkowy interfejsu DRI (Direct Rendering Infrastructure)
583Group: Development/Libraries
584Requires: libdrm-devel >= %{libdrm_ver}
585# <GL/gl.h>
586%if %{with glvnd}
587Requires: libglvnd-libGL-devel >= %{libglvnd_ver}
5dd5dad4 588Conflicts: Mesa-libGL-devel < 21.1.0-2
37d71b73
JB
589%else
590Requires: Mesa-libGL-devel = %{version}-%{release}
591%endif
592
593%description dri-devel
594Direct Rendering Infrastructure interface header file.
595
596%description dri-devel -l pl.UTF-8
597Plik nagłówkowy interfejsu DRI (Direct Rendering Infrastructure).
598
0c8a4197
JB
599%package d3d
600Summary: Nine Direct3D9 driver (for Wine)
601Summary(pl.UTF-8): Sterownik Direct3D9 Nine (dla Wine)
602Group: Libraries
603Requires: libdrm >= %{libdrm_ver}
604Requires: zlib >= %{zlib_ver}
605
606%description d3d
607Nine Direct3D9 driver (for Wine).
608
609%description d3d -l pl.UTF-8
610Sterownik Direct3D9 Nine (dla Wine).
611
612%package d3d-devel
613Summary: Nine Direct3D9 driver API
614Summary(pl.UTF-8): API sterownika Direct3D9 Nine
615Group: Development/Libraries
616Requires: libdrm-devel >= %{libdrm_ver}
617
618%description d3d-devel
619Nine Direct3D9 driver API.
620
621%description d3d-devel -l pl.UTF-8
622API sterownika Direct3D9 Nine.
623
afe33c03 624%package dri-driver-ati-radeon-R300
362c6f99
JB
625Summary: X.org DRI driver for ATI R300 card family
626Summary(pl.UTF-8): Sterownik X.org DRI dla rodziny kart ATI R300
f4a8c5f6 627License: MIT
18da5046 628Group: X11/Libraries
9c1f9f63 629Requires: zlib >= %{zlib_ver}
69b234f8
JR
630Suggests: xorg-driver-video-amdgpu
631Suggests: xorg-driver-video-ati
dd3dc60a 632Obsoletes: X11-driver-radeon-dri < 1:7.0.0
7f598a9c
JP
633Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
634Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
afe33c03 635
636%description dri-driver-ati-radeon-R300
9ea66b5e
JB
637X.org Gallium DRI driver for ATI R300/R400/RS690/R500 card family
638(Radeon 9600-9800, X300-X2300). It supports R300, R350, R360, RV350,
639RV370, RV380, R420, R423, R430, R480, R481, RV410, RS400, RC410,
640RS480, RS482, R520, RV515, RV530, RV560, RV570, R580, RS600, RS690,
641RS740 chips.
afe33c03 642
f77f03b8 643%description dri-driver-ati-radeon-R300 -l pl.UTF-8
9ea66b5e
JB
644Sterownik X.org DRI Gallium dla rodziny kart ATI R300/R400/RS690/R500
645(Radeon 9600-9800, X300-X2300). Obsługuje układy R300, R350, R360,
646RV350, RV370, RV380, R420, R423, R430, R480, R481, RV410, RS400,
647RC410, RS480, RS482, R520, RV515, RV530, RV560, RV570, R580, RS600,
648RS690, RS740.
afe33c03 649
e68936d0
AM
650%package dri-driver-ati-radeon-R600
651Summary: X.org DRI driver for ATI R600 card family
652Summary(pl.UTF-8): Sterownik X.org DRI dla rodziny kart ATI R600
653License: MIT
654Group: X11/Libraries
655Requires: radeon-ucode
9c1f9f63 656Requires: zlib >= %{zlib_ver}
69b234f8
JR
657Suggests: xorg-driver-video-amdgpu
658Suggests: xorg-driver-video-ati
7f598a9c
JP
659Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
660Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
e68936d0
AM
661
662%description dri-driver-ati-radeon-R600
9ea66b5e
JB
663X.org Gallium DRI driver for ATI R600/R700 card family (Radeon HD
6642400-7000). It supports R600, RV610, RV630, RV670, RV620, RV635,
665RS780, RS880, RV770, RV730, RV710, RV740, CEDAR, REDWOOD, JUNIPER,
666CYPRESS, HEMLOCK, PALM, SUMO/SUMO2, CAYMAN, BARTS, TURKS, CAICOS,
667ARUBA chips.
e68936d0
AM
668
669%description dri-driver-ati-radeon-R600 -l pl.UTF-8
9ea66b5e
JB
670Sterownik X.org DRI Gallium dla rodziny kart ATI R600/R700 (Radeon HD
6712400-7000). Obsługuje układy R600, RV610, RV630, RV670, RV620, RV635,
672RS780, RS880, RV770, RV730, RV710, RV740, CEDAR, REDWOOD, JUNIPER,
673CYPRESS, HEMLOCK, PALM, SUMO/SUMO2, CAYMAN, BARTS, TURKS, CAICOS,
674ARUBA.
e68936d0 675
3dc87f1a
AM
676%package dri-driver-ati-radeon-SI
677Summary: X.org DRI driver for ATI Southern Islands card family
678Summary(pl.UTF-8): Sterownik X.org DRI dla rodziny kart ATI Southern Islands
679License: MIT
680Group: X11/Libraries
681Requires: radeon-ucode
9c1f9f63 682Requires: zlib >= %{zlib_ver}
69b234f8
JR
683Suggests: xorg-driver-video-amdgpu
684Suggests: xorg-driver-video-ati
7f598a9c
JP
685Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
686Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
3dc87f1a
AM
687
688%description dri-driver-ati-radeon-SI
9ea66b5e
JB
689X.org Gallium DRI driver for ATI Southern Islands card family (Radeon
690HD 7700-8000, R9, APU). It supports TAHITI, PITCAIRN, VERDE, OLAND,
691HAINAN, BONAIRE, KABINI, MULLINS, KAVERI, HAWAII, ICELAND, TONGA,
ef3a19d3 692CARRIZO, FIJI, POLARIS, STONEY, VEGA, RAVEN chips.
3dc87f1a
AM
693
694%description dri-driver-ati-radeon-SI -l pl.UTF-8
9ea66b5e
JB
695Sterownik X.org DRI Gallium dla rodziny kart ATI Southern Islands
696(Radeon HD 7700-8000, R9, APU). Obsługuje układy TAHITI, PITCAIRN,
697VERDE, OLAND, HAINAN, BONAIRE, KABINI, MULLINS, KAVERI, HAWAII,
ef3a19d3 698ICELAND, TONGA, CARRIZO, FIJI, POLARIS, STONEY, VEGA, RAVEN.
3dc87f1a 699
fae799e6
JB
700%package dri-driver-etnaviv
701Summary: X.org DRI driver for Vivante 3D chips
702Summary(pl.UTF-8): Sterownik X.org DRI dla układów Vivante 3D
703License: MIT
704Group: X11/Libraries
9c1f9f63 705Requires: zlib >= %{zlib_ver}
69b234f8 706#Suggests: xorg-driver-video-?
7f598a9c
JP
707Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
708Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
fae799e6
JB
709
710%description dri-driver-etnaviv
ef3a19d3 711X.org Gallium DRI driver for Vivante 3D chips.
fae799e6
JB
712
713%description dri-driver-etnaviv -l pl.UTF-8
ef3a19d3 714Sterownik X.org DRI Gallium dla układów Vivante 3D.
fae799e6 715
f31a332e
JB
716%package dri-driver-freedreno
717Summary: X.org DRI driver for Adreno chips
718Summary(pl.UTF-8): Sterownik X.org DRI dla układów Adreno
719License: MIT
720Group: X11/Libraries
9c1f9f63 721Requires: zlib >= %{zlib_ver}
69b234f8 722Suggests: xorg-driver-video-freedreno
7f598a9c
JP
723Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
724Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
f31a332e
JB
725
726%description dri-driver-freedreno
ef3a19d3 727X.org Gallium DRI driver for Adreno chips.
f31a332e
JB
728
729%description dri-driver-freedreno -l pl.UTF-8
ef3a19d3 730Sterownik X.org DRI Gallium dla układów Adreno.
f31a332e 731
1dce271a
JP
732%package dri-driver-intel-crocus
733Summary: X.org DRI driver for Intel Gen4-Gen7 chips
734Summary(pl.UTF-8): Sterownik X.org DRI dla układów Intel Gen4-Gen7
735License: MIT
736Group: X11/Libraries
1dce271a 737Requires: zlib >= %{zlib_ver}
e4ca490f 738Obsoletes: Mesa-dri-driver-intel-i965 < 22.0.0
7f598a9c
JP
739Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
740Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
1dce271a
JP
741
742%description dri-driver-intel-crocus
743X.org Gallium DRI driver for Intel Gen4/Gen5/Gen6/Gen7 chips.
744
745%description dri-driver-intel-crocus -l pl.UTF-8
746Sterownik X.org DRI dla układów Intel Gen4/Gen5/Gen6/Gen7.
747
afe33c03 748%package dri-driver-intel-i915
362c6f99
JB
749Summary: X.org DRI driver for Intel i915 card family
750Summary(pl.UTF-8): Sterownik X.org DRI dla rodziny kart Intel i915
f4a8c5f6 751License: MIT
18da5046 752Group: X11/Libraries
9c1f9f63 753Requires: zlib >= %{zlib_ver}
9fd74819 754Obsoletes: Mesa-dri-driver-intel-i830 < 6.5
8e26093b 755Obsoletes: X11-driver-i810-dri < 1:7.0.0
7f598a9c
JP
756Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
757Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
afe33c03 758
759%description dri-driver-intel-i915
9ea66b5e
JB
760X.org DRI driver for Intel i915 card family (830, 845, 852/855, 865,
761915, 945, G33, Q33, Q35, Pineview).
afe33c03 762
f77f03b8 763%description dri-driver-intel-i915 -l pl.UTF-8
9ea66b5e
JB
764Sterownik X.org DRI dla rodziny kart Intel i915 (830, 845, 852/855,
765865, 915, 945, G33, Q33, Q35, Pineview).
afe33c03 766
ef3a19d3
JB
767%package dri-driver-intel-iris
768Summary: X.org DRI driver for Intel Iris (Gen8+) card family
769Summary(pl.UTF-8): Sterownik X.org DRI dla rodziny kart Intel Iris (Gen8+)
770License: MIT
771Group: X11/Libraries
ef3a19d3 772Requires: zlib >= %{zlib_ver}
7f598a9c
JP
773Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
774Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
ef3a19d3
JB
775
776%description dri-driver-intel-iris
777X.org Gallium DRI driver for Intel Iris (Gen8+) card family
778(Broadwell, Skylake, Broxton, Kabylake, Coffeelake, Geminilake,
779Whiskey Lake, Comet Lake, Cannonlake, Ice Lake, Elkhart Lake).
780
781%description dri-driver-intel-iris -l pl.UTF-8
782Sterownik X.org DRI Gallium dla rodziny kart Intel Iris (Gen8+:
783Broadwell, Skylake, Broxton, Kabylake, Coffeelake, Geminilake,
784Whiskey Lake, Comet Lake, Cannonlake, Ice Lake, Elkhart Lake).
785
786%package dri-driver-kmsro
787Summary: X.org Gallium DRI driver using KMS Render-Only architecture
788Summary(pl.UTF-8): Sterownik X.org DRI Gallium wykorzystujący architekturę KMS Render-Only
789License: MIT
790Group: X11/Libraries
ef3a19d3 791Requires: zlib >= %{zlib_ver}
69b234f8 792#Suggests: xorg-driver-video-?
7f598a9c
JP
793Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
794Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
ef3a19d3
JB
795
796%description dri-driver-kmsro
797X.org Gallium DRI driver using KMS Render-Only architecture.
798
799%description dri-driver-kmsro -l pl.UTF-8
800Sterownik X.org DRI Gallium wykorzystujący architekturę KMS
801Render-Only.
802
803%package dri-driver-lima
804Summary: X.org DRI driver for Mali Utgard chips
805Summary(pl.UTF-8): Sterownik X.org DRI dla układów Mali Utgard
806License: MIT
807Group: X11/Libraries
ef3a19d3 808Requires: zlib >= %{zlib_ver}
69b234f8 809#Suggests: xorg-driver-video-???
7f598a9c
JP
810Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
811Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
ef3a19d3
JB
812
813%description dri-driver-lima
814X.org Gallium DRI driver for Mali Utgard chips.
815
816%description dri-driver-lima -l pl.UTF-8
817Sterownik X.org DRI Gallium dla układów Mali Utgard.
b360f4f6 818
3e88bc92
AM
819%package dri-driver-nouveau
820Summary: X.org DRI driver for NVIDIA card family
821Summary(pl.UTF-8): Sterownik X.org DRI dla rodziny kart NVIDIA
822License: MIT
823Group: X11/Libraries
9c1f9f63 824Requires: zlib >= %{zlib_ver}
69b234f8 825Suggests: xorg-driver-video-nouveau
7f598a9c
JP
826Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
827Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
3e88bc92
AM
828
829%description dri-driver-nouveau
830X.org DRI drivers for NVIDIA card family.
831
832%description dri-driver-nouveau -l pl.UTF-8
833Sterowniki X.org DRI dla rodziny kart NVIDIA.
834
ef3a19d3
JB
835%package dri-driver-panfrost
836Summary: X.org DRI driver for Mali Midgard/Bifrost chips
837Summary(pl.UTF-8): Sterownik X.org DRI dla układów Mali Midgard/Bifrost
838License: MIT
839Group: X11/Libraries
ef3a19d3 840Requires: zlib >= %{zlib_ver}
69b234f8 841#Suggests: xorg-driver-video-???
7f598a9c
JP
842Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
843Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
ef3a19d3
JB
844
845%description dri-driver-panfrost
846X.org Gallium DRI driver for Mali Midgard/Bifrost chips.
847
848%description dri-driver-panfrost -l pl.UTF-8
849Sterownik X.org DRI Gallium dla układów Mali Midgard/Bifrost.
850
f3606317 851%package dri-driver-swrast
362c6f99
JB
852Summary: X.org DRI software rasterizer driver
853Summary(pl.UTF-8): Sterownik X.org DRI obsługujący rysowanie programowe
f3606317
AM
854License: MIT
855Group: X11/Libraries
9c1f9f63 856Requires: zlib >= %{zlib_ver}
7f598a9c
JP
857Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
858Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
f3606317
AM
859
860%description dri-driver-swrast
362c6f99 861X.org DRI software rasterizer driver.
f3606317
AM
862
863%description dri-driver-swrast -l pl.UTF-8
362c6f99 864Sterownik X.org DRI obsługujący rysowanie programowe.
f3606317 865
ef3a19d3
JB
866%package dri-driver-tegra
867Summary: X.org DRI driver for Tegra SoC chips
868Summary(pl.UTF-8): Sterownik X.org DRI dla układów SoC Tegra
869License: MIT
870Group: X11/Libraries
ef3a19d3 871Requires: zlib >= %{zlib_ver}
69b234f8 872#Suggests: xorg-driver-video-???
7f598a9c
JP
873Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
874Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
ef3a19d3
JB
875
876%description dri-driver-tegra
877X.org Gallium DRI driver for Tegra SoC chips.
878
879%description dri-driver-tegra -l pl.UTF-8
880Sterownik X.org DRI Gallium dla układów Tegra SoC.
881
882%package dri-driver-v3d
883Summary: X.org DRI driver for Broadcom VC5 chips
884Summary(pl.UTF-8): Sterownik X.org DRI dla układów Broadcom VC5
885License: MIT
886Group: X11/Libraries
ef3a19d3 887Requires: zlib >= %{zlib_ver}
69b234f8 888Suggests: xorg-driver-video-modesetting
7f598a9c
JP
889Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
890Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
ef3a19d3
JB
891
892%description dri-driver-v3d
893X.org Gallium DRI driver for Broadcom VC5 chips.
894
895%description dri-driver-v3d -l pl.UTF-8
896Sterownik X.org DRI Gallium dla układów Broadcom VC5.
897
f31a332e
JB
898%package dri-driver-vc4
899Summary: X.org DRI driver for Broadcom VC4 chips
900Summary(pl.UTF-8): Sterownik X.org DRI dla układów Broadcom VC4
901License: MIT
902Group: X11/Libraries
9c1f9f63 903Requires: zlib >= %{zlib_ver}
69b234f8 904Suggests: xorg-driver-video-modesetting
7f598a9c
JP
905Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
906Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
f31a332e
JB
907
908%description dri-driver-vc4
ef3a19d3 909X.org Gallium DRI driver for Broadcom VC4 chips.
f31a332e
JB
910
911%description dri-driver-vc4 -l pl.UTF-8
ef3a19d3 912Sterownik X.org DRI Gallium dla układów Broadcom VC4.
f31a332e 913
6e049c9d
AM
914%package dri-driver-virgl
915Summary: X.org DRI driver for QEMU VirGL
916Summary(pl.UTF-8): Sterownik X.org DRI dla QEMU VirGL
917License: MIT
918Group: X11/Libraries
9c1f9f63 919Requires: zlib >= %{zlib_ver}
7f598a9c
JP
920Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
921Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
6e049c9d
AM
922
923%description dri-driver-virgl
03cdb094 924X.org Gallium DRI driver for QEMU VirGL.
6e049c9d
AM
925
926%description dri-driver-virgl -l pl.UTF-8
03cdb094 927Sterownik X.org DRI Gallium dla QEMU VirGL.
6e049c9d 928
e68936d0
AM
929%package dri-driver-vmwgfx
930Summary: X.org DRI driver for VMware
931Summary(pl.UTF-8): Sterownik X.org DRI dla VMware
932License: MIT
933Group: X11/Libraries
9c1f9f63 934Requires: zlib >= %{zlib_ver}
69b234f8 935Suggests: xorg-driver-video-vmware
7f598a9c
JP
936Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
937Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
e68936d0
AM
938
939%description dri-driver-vmwgfx
03cdb094 940X.org Gallium DRI driver for VMWare.
e68936d0
AM
941
942%description dri-driver-vmwgfx -l pl.UTF-8
03cdb094 943Sterownik X.org DRI Gallium dla VMware.
e68936d0 944
428251cb
JB
945%package dri-driver-zink
946Summary: X.org DRI driver based on Vulkan
947Summary(pl.UTF-8): Sterownik X.org DRI oparty na Vulkanie
948License: MIT
949Group: X11/Libraries
428251cb 950Requires: zlib >= %{zlib_ver}
7f598a9c
JP
951Conflicts: xorg-xserver-libglx(glapi) > %{glapi_ver}
952Conflicts: xorg-xserver-libglx(glapi) < %{glapi_ver}
428251cb
JB
953
954%description dri-driver-zink
955X.org Gallium DRI driver based on Vulkan.
956
957%description dri-driver-zink -l pl.UTF-8
958Sterownik X.org DRI Gallium oparty na Vulkanie.
959
1dce271a
JP
960%package pipe-driver-crocus
961Summary: crocus driver for Mesa Gallium dynamic pipe loader
962Summary(pl.UTF-8): Sterownik crocus dla dynamicznego systemu potoków szkieletu Mesa Gallium
963Group: Libraries
964Requires: zlib >= %{zlib_ver}
965
966%description pipe-driver-crocus
967crocus driver for Mesa Gallium dynamic pipe loader. It supports Intel
968Gen4/Gen5/Gen6/Gen7 chips.
969
970%description pipe-driver-crocus -l pl.UTF-8
971Sterownik crocus dla dynamicznego systemu potoków szkieletu Mesa
972Gallium. Obsługuje układy Intela Gen4/Gen5/Gen6/Gen7.
973
ef3a19d3 974%package pipe-driver-i915
e3221d38
JB
975Summary: i915 driver for Mesa Gallium dynamic pipe loader
976Summary(pl.UTF-8): Sterownik i915 dla dynamicznego systemu potoków szkieletu Mesa Gallium
977Group: Libraries
978Requires: zlib >= %{zlib_ver}
979Obsoletes: Mesa-gbm-driver-i915 < 11.1.1
980Obsoletes: Mesa-opencl-driver-i915 < 9.1
ef3a19d3
JB
981
982%description pipe-driver-i915
983i915 driver for Mesa Gallium dynamic pipe loader. It supports Intel
984915/945/G33/Q33/Q35/Pineview chips.
985
986%description pipe-driver-i915 -l pl.UTF-8
987Sterownik i915 dla dynamicznego systemu potoków szkieletu Mesa
988Gallium. Obsługuje układy Intela z serii 915/945/G33/Q33/Q35/Pineview.
989
0f738b6d 990%package pipe-driver-iris
e3221d38
JB
991Summary: iris driver for Mesa Gallium dynamic pipe loader
992Summary(pl.UTF-8): Sterownik iris dla dynamicznego systemu potoków szkieletu Mesa Gallium
993Group: Libraries
994Requires: zlib >= %{zlib_ver}
0f738b6d
JP
995
996%description pipe-driver-iris
997iris driver for Mesa Gallium dynamic pipe loader. It supports Intel
998Iris (Gen8+) card family (Broadwell, Skylake, Broxton, Kabylake,
999Coffeelake, Geminilake, Whiskey Lake, Comet Lake, Cannonlake, Ice
1000Lake, Elkhart Lake).
1001
1002%description pipe-driver-iris -l pl.UTF-8
1003Sterownik iris dla dynamicznego systemu potoków szkieletu Mesa
1004Gallium. Obsługuje układy Intela z rodziny kart Intel Iris (Gen8+:
1005Broadwell, Skylake, Broxton, Kabylake, Coffeelake, Geminilake, Whiskey
1006Lake, Comet Lake, Cannonlake, Ice Lake, Elkhart Lake).
1007
4a6d05d3
JP
1008%package pipe-driver-kmsro
1009Summary: kmsro driver for Mesa Gallium dynamic pipe loader
1010Summary(pl.UTF-8): Sterownik kmsro dla dynamicznego systemu potoków szkieletu Mesa Gallium
1011Group: Libraries
1012Requires: zlib >= %{zlib_ver}
1013
1014%description pipe-driver-kmsro
1015kmsro driver for Mesa Gallium dynamic pipe loader.
1016
1017%description pipe-driver-kmsro -l pl.UTF-8
1018Sterownik kmsro dla dynamicznego systemu potoków szkieletu Mesa
1019Gallium.
1020
6f955018
JB
1021%package pipe-driver-msm
1022Summary: msm (freedreno) driver for Mesa Gallium dynamic pipe loader
1023Summary(pl.UTF-8): Sterownik msm (freedreno) dla dynamicznego systemu potoków szkieletu Mesa Gallium
1024Group: Libraries
9c1f9f63 1025Requires: zlib >= %{zlib_ver}
6f955018
JB
1026
1027%description pipe-driver-msm
1028msm (freedreno) driver for Mesa Gallium dynamic pipe loader. It
1029supports Adreno chips.
1030
1031%description pipe-driver-msm -l pl.UTF-8
1032Sterownik msm (freedreno) dla dynamicznego systemu potoków szkieletu
1033Mesa Gallium. Obsługuje układy Adreno.
1034
1035%package pipe-driver-nouveau
1036Summary: nouveau driver for Mesa Gallium dynamic pipe loader
1037Summary(pl.UTF-8): Sterownik nouveau dla dynamicznego systemu potoków szkieletu Mesa Gallium
1038Group: Libraries
9c1f9f63 1039Requires: zlib >= %{zlib_ver}
9fd74819
JB
1040Obsoletes: Mesa-gbm-driver-nouveau < 11.1.1
1041Obsoletes: Mesa-opencl-driver-nouveau < 9.1
6f955018
JB
1042
1043%description pipe-driver-nouveau
1044nouveau driver for Mesa Gallium dynamic pipe loader. It supports
1045NVidia adapters.
1046
1047%description pipe-driver-nouveau -l pl.UTF-8
1048Sterownik nouveau dla dynamicznego systemu potoków szkieletu Mesa
1049Gallium. Obsługuje karty graficzne firmy NVidia.
1050
1051%package pipe-driver-r300
1052Summary: r300 driver for Mesa Gallium dynamic pipe loader
1053Summary(pl.UTF-8): Sterownik r300 dla dynamicznego systemu potoków szkieletu Mesa Gallium
1054Group: Libraries
9c1f9f63 1055Requires: zlib >= %{zlib_ver}
9fd74819
JB
1056Obsoletes: Mesa-gbm-driver-r300 < 11.1.1
1057Obsoletes: Mesa-opencl-driver-r300 < 9.1
6f955018
JB
1058
1059%description pipe-driver-r300
1060r300 driver for Mesa Gallium dynamic pipe loader. It supports ATI
1061Radeon adapters based on R300/R400/RS690/R500 chips.
1062
1063%description pipe-driver-r300 -l pl.UTF-8
1064Sterownik r300 dla dynamicznego systemu potoków szkieletu Mesa
1065Gallium. Obsługuje karty graficzne ATI Radeon oparte na układach
1066R300/R400/RS690/R500.
1067
1068%package pipe-driver-r600
1069Summary: r600 driver for Mesa Gallium dynamic pipe loader
1070Summary(pl.UTF-8): Sterownik r600 dla dynamicznego systemu potoków szkieletu Mesa Gallium
1071Group: Libraries
9c1f9f63 1072Requires: zlib >= %{zlib_ver}
9fd74819
JB
1073Obsoletes: Mesa-gbm-driver-r600 < 11.1.1
1074Obsoletes: Mesa-libllvmradeon < 9.2
1075Obsoletes: Mesa-opencl-driver-r600 < 9.1
6f955018
JB
1076
1077%description pipe-driver-r600
1078r600 driver for Mesa Gallium dynamic pipe loader. It supports ATI
1079Radeon adapters based on R600/R700 chips.
1080
1081%description pipe-driver-r600 -l pl.UTF-8
1082Sterownik r600 dla dynamicznego systemu potoków szkieletu Mesa
1083Gallium. Obsługuje karty graficzne ATI Radeon oparte na układach
1084R600/R700.
1085
1086%package pipe-driver-radeonsi
1087Summary: radeonsi driver for Mesa Gallium dynamic pipe loader
1088Summary(pl.UTF-8): Sterownik radeonsi dla dynamicznego systemu potoków szkieletu Mesa Gallium
1089Group: Libraries
9c1f9f63 1090Requires: zlib >= %{zlib_ver}
9fd74819
JB
1091Obsoletes: Mesa-gbm-driver-radeonsi < 11.1.1
1092Obsoletes: Mesa-libllvmradeon < 9.2
1093Obsoletes: Mesa-opencl-driver-radeonsi < 9.1
6f955018
JB
1094
1095%description pipe-driver-radeonsi
1096radeonsi driver for Mesa Gallium dynamic pipe loader. It supports ATI
1097Radeon adapters based on Southern Islands chips.
1098
1099%description pipe-driver-radeonsi -l pl.UTF-8
1100Sterownik radeonsi dla dynamicznego systemu potoków szkieletu Mesa
1101Gallium. Obsługuje karty graficzne ATI Radeon oparte na układach
1102Southern Islands.
1103
1104%package pipe-driver-swrast
1105Summary: Software (swrast) driver for Mesa Gallium dynamic pipe loader
1106Summary(pl.UTF-8): Sterownik programowy (swrast) dla dynamicznego systemu potoków szkieletu Mesa Gallium
1107Group: Libraries
9c1f9f63 1108Requires: zlib >= %{zlib_ver}
9fd74819
JB
1109Obsoletes: Mesa-gbm-driver-swrast < 11.1.1
1110Obsoletes: Mesa-opencl-driver-swrast < 9.1
6f955018
JB
1111
1112%description pipe-driver-swrast
1113Software (swrast) driver for Mesa Gallium dynamic pipe loader.
1114
1115%description pipe-driver-swrast -l pl.UTF-8
1116Sterownik programowy (swrast) dla dynamicznego systemu potoków
1117szkieletu Mesa Gallium.
1118
1119%package pipe-driver-vmwgfx
1120Summary: vmwgfx driver for Mesa Gallium dynamic pipe loader
1121Summary(pl.UTF-8): Sterownik vmwgfx dla dynamicznego systemu potoków szkieletu Mesa Gallium
1122Group: Libraries
9c1f9f63 1123Requires: zlib >= %{zlib_ver}
9fd74819
JB
1124Obsoletes: Mesa-gbm-driver-vmwgfx < 11.1.1
1125Obsoletes: Mesa-opencl-driver-vmwgfx < 9.1
6f955018
JB
1126
1127%description pipe-driver-vmwgfx
1128vmwgfx driver for Mesa Gallium dynamic pipe loader. It supports VMware
1129virtual video adapter.
1130
1131%description pipe-driver-vmwgfx -l pl.UTF-8
1132Sterownik vmwgfx dla dynamicznego systemu potoków szkieletu Mesa
1133Gallium. Obsługuje wirtualną kartę graficzną VMware.
1134
0c8a4197
JB
1135%package -n libva-driver-gallium
1136Summary: VA driver for Gallium State Tracker
1137Summary(pl.UTF-8): Sterowniki VA do Gallium
1f730540 1138Group: Libraries
0c8a4197
JB
1139%if %{with gallium_radeon}
1140Requires: libva-driver-r600 = %{version}-%{release}
1141Requires: libva-driver-radeonsi = %{version}-%{release}
1142%endif
1143%if %{with gallium_nouveau}
1144Requires: libva-driver-nouveau = %{version}-%{release}
1145%endif
1146
1147%description -n libva-driver-gallium
1148VA drivers for Gallium State Tracker (r600, radeonsi & nouveau).
1149
1150%description -n libva-driver-gallium -l pl.UTF-8
1151Sterowniki VA do Gallium (r600, radeonsi & nouveau).
1152
1153%package -n libva-driver-r600
1154Summary: VA driver for ATI Radeon R600 series adapters
1155Summary(pl.UTF-8): Sterownik VA dla kart ATI Radeon z serii R600
1156Group: Libraries
bc0757d7 1157Requires: libva >= 1.8.0
9c1f9f63 1158Requires: zlib >= %{zlib_ver}
1f730540 1159
0c8a4197
JB
1160%description -n libva-driver-r600
1161VA driver for ATI Radeon R600 series adapters.
1f730540 1162
0c8a4197
JB
1163%description -n libva-driver-r600 -l pl.UTF-8
1164Sterownik VA dla kart ATI Radeon z serii R600.
1f730540 1165
0c8a4197
JB
1166%package -n libva-driver-radeonsi
1167Summary: VA driver for ATI Radeon SI adapters
1168Summary(pl.UTF-8): Sterownik VA dla kart ATI Radeon SI
1169Group: Libraries
bc0757d7 1170Requires: libva >= 1.8.0
0c8a4197 1171Requires: zlib >= %{zlib_ver}
1f730540 1172
0c8a4197
JB
1173%description -n libva-driver-radeonsi
1174VA driver for ATI Radeon adapters based on Southern Islands chips.
1f730540 1175
0c8a4197
JB
1176%description -n libva-driver-radeonsi -l pl.UTF-8
1177Sterownik VA dla kart ATI Radeon opartych na układach Southern
1178Islands.
1179
1180%package -n libva-driver-nouveau
1181Summary: VA driver for NVidia adapters
1182Summary(pl.UTF-8): Sterownik VA dla kart NVidia
1183Group: Libraries
bc0757d7 1184Requires: libva >= 1.8.0
0c8a4197
JB
1185Requires: zlib >= %{zlib_ver}
1186
1187%description -n libva-driver-nouveau
1188VA driver for NVidia adapters.
1189
1190%description -n libva-driver-nouveau -l pl.UTF-8
1191Sterownik VA dla kart NVidia.
1f730540 1192
9b8203d9
JP
1193%package -n libva-driver-virtio
1194Summary: VA driver for VirtIO adapters
1195Summary(pl.UTF-8): Sterownik VA dla kart VirtIO
1196Group: Libraries
1197Requires: libva >= 1.8.0
1198Requires: zlib >= %{zlib_ver}
1199
1200%description -n libva-driver-virtio
1201VA driver for VirtIO adapters.
1202
1203%description -n libva-driver-virtio -l pl.UTF-8
1204Sterownik VA dla kart VirtIO.
1205
04c3cb73
JB
1206%package -n libvdpau-driver-mesa-nouveau
1207Summary: Mesa nouveau driver for the vdpau API
1208Summary(pl.UTF-8): Sterownik Mesa nouveau dla API vdpau
9bfb354d
AM
1209License: MIT
1210Group: X11/Libraries
8eb275e9 1211Requires: libdrm >= %{libdrm_ver}
7731a383 1212Requires: libvdpau >= 1.1
9c1f9f63 1213Requires: zlib >= %{zlib_ver}
04c3cb73 1214Conflicts: libvdpau-driver-mesa
9bfb354d 1215
04c3cb73
JB
1216%description -n libvdpau-driver-mesa-nouveau
1217Mesa nouveau driver for the vdpau API. It supports NVidia adapters
1218(NV40-NV96, NVa0).
9bfb354d 1219
04c3cb73
JB
1220%description -n libvdpau-driver-mesa-nouveau -l pl.UTF-8
1221Sterownik Mesa nouveau dla API vdpau. Obsługuje karty NVidia
1222(NV40-NV96, NVa0).
9bfb354d 1223
04c3cb73
JB
1224%package -n libvdpau-driver-mesa-r600
1225Summary: Mesa r600 driver for the vdpau API
1226Summary(pl.UTF-8): Sterownik Mesa r600 dla API vdpau
1227License: MIT
1228Group: X11/Libraries
1229Requires: libdrm >= %{libdrm_ver}
7731a383 1230Requires: libvdpau >= 1.1
9c1f9f63 1231Requires: zlib >= %{zlib_ver}
04c3cb73
JB
1232Conflicts: libvdpau-driver-mesa
1233
1234%description -n libvdpau-driver-mesa-r600
1235Mesa r600 driver for the vdpau API. It supports ATI Radeon adapters
1236based on R600/R700 chips.
1237
1238%description -n libvdpau-driver-mesa-r600 -l pl.UTF-8
1239Sterownik Mesa r600 dla API vdpau. Obsługuje karty ATI Radeon oparte
1240na układach R600/R700.
1241
3dc87f1a
AM
1242%package -n libvdpau-driver-mesa-radeonsi
1243Summary: Mesa radeonsi driver for the vdpau API
1244Summary(pl.UTF-8): Sterownik Mesa radeonsi dla API vdpau
1245License: MIT
1246Group: X11/Libraries
1247Requires: libdrm >= %{libdrm_ver}
7731a383 1248Requires: libvdpau >= 1.1
9c1f9f63 1249Requires: zlib >= %{zlib_ver}
9fd74819 1250Obsoletes: Mesa-libllvmradeon < 9.2
dd3dc60a 1251Conflicts: libvdpau-driver-mesa
3dc87f1a
AM
1252
1253%description -n libvdpau-driver-mesa-radeonsi
0784ce78
JB
1254Mesa radeonsi driver for the vdpau API. It supports ATI Radeon
1255adapters based on Southern Islands chips.
3dc87f1a
AM
1256
1257%description -n libvdpau-driver-mesa-radeonsi -l pl.UTF-8
0784ce78
JB
1258Sterownik Mesa radeonsi dla API vdpau. Obsługuje karty ATI Radeon
1259oparte na układach Southern Islands.
3dc87f1a 1260
9b8203d9
JP
1261%package -n libvdpau-driver-mesa-virtio
1262Summary: Mesa virtio driver for the vdpau API
1263Summary(pl.UTF-8): Sterownik Mesa virtio dla API vdpau
1264License: MIT
1265Group: X11/Libraries
1266Requires: libdrm >= %{libdrm_ver}
1267Requires: libvdpau >= 1.1
1268Requires: zlib >= %{zlib_ver}
1269
1270%description -n libvdpau-driver-mesa-virtio
1271Mesa virtio driver for the vdpau API.
1272
1273%description -n libvdpau-driver-mesa-virtio -l pl.UTF-8
1274Sterownik Mesa virtio dla API vdpau.
1275
56313830
AM
1276%package -n omxil-mesa
1277Summary: Mesa driver for Bellagio OpenMAX IL API
1278Summary(pl.UTF-8): Sterownik Mesa nouveau dla API Bellagio OpenMAX IL
1279License: MIT
1280Group: X11/Libraries
1281Requires: libdrm >= %{libdrm_ver}
56313830 1282Requires: libomxil-bellagio
dd3dc60a 1283Requires: libxcb >= 1.13
9c1f9f63 1284Requires: zlib >= %{zlib_ver}
9fd74819
JB
1285Obsoletes: omxil-mesa-nouveau < 10.3
1286Obsoletes: omxil-mesa-r600 < 10.3
1287Obsoletes: omxil-mesa-radeonsi < 10.3
56313830
AM
1288
1289%description -n omxil-mesa
1290Mesa driver for Bellagio OpenMAX IL API.
1291
1292%description -n omxil-mesa -l pl.UTF-8
1293Sterownik Mesa dla API Bellagio OpenMAX IL.
1294
37b5b688
JP
1295%package vulkan-icd-broadcom
1296Summary: v3dv - Mesa Vulkan driver for Raspberry Pi 4
1297Summary(pl.UTF-8): v3dv - sterownik Vulkan dla Raspberry Pi 4
1298License: MIT
1299Group: Libraries
1300Requires: libdrm >= %{libdrm_ver}
1301Requires: libxcb >= 1.13
1302Requires: xorg-lib-libXrandr >= 1.3
1303Requires: xorg-lib-libxshmfence >= 1.1
1304# wayland-client
1305Requires: wayland >= %{wayland_ver}
1306Requires: zlib >= %{zlib_ver}
1307Suggests: vulkan(loader)
0a2670f5 1308Provides: vulkan(icd) = 1.1.204
37b5b688
JP
1309
1310%description vulkan-icd-broadcom
1311v3dv - Mesa Vulkan driver for Raspberry Pi 4.
1312
1313%description vulkan-icd-broadcom -l pl.UTF-8
1314v3dv - sterownik Vulkan dla Raspberry Pi 4.
1315
1316%package vulkan-icd-freedreno
1317Summary: turnip - Mesa Vulkan driver for Adreno chips
1318Summary(pl.UTF-8): turnip - sterownik Vulkan dla układów Adreno
1319License: MIT
1320Group: Libraries
1321Requires: libdrm >= %{libdrm_ver}
1322Requires: libxcb >= 1.13
1323Requires: xorg-lib-libXrandr >= 1.3
1324Requires: xorg-lib-libxshmfence >= 1.1
1325# wayland-client
1326Requires: wayland >= %{wayland_ver}
1327Requires: zlib >= %{zlib_ver}
1328Suggests: vulkan(loader)
0a2670f5 1329Provides: vulkan(icd) = 1.1.204
37b5b688
JP
1330
1331%description vulkan-icd-freedreno
1332turnip - Mesa Vulkan driver for Adreno chips.
1333
1334%description vulkan-icd-freedreno -l pl.UTF-8
1335turnip - sterownik Vulkan dla układów Adreno.
1336
6ec7f8a2
JP
1337%package vulkan-icd-powervr
1338Summary: powervr - Mesa Vulkan driver for Imagination Technologies Rogue GPUs
1339Summary(pl.UTF-8): powervr - sterownik Vulkan dla układów Imagination Technologies Rogue
1340License: MIT
1341Group: Libraries
1342Requires: libdrm >= %{libdrm_ver}
1343Requires: libxcb >= 1.13
1344Requires: xorg-lib-libXrandr >= 1.3
1345Requires: xorg-lib-libxshmfence >= 1.1
1346# wayland-client
1347Requires: wayland >= %{wayland_ver}
1348Requires: zlib >= %{zlib_ver}
1349Suggests: vulkan(loader)
1350Provides: vulkan(icd) = 1.1.204
1351
1352%description vulkan-icd-powervr
1353powervr - Mesa Vulkan driver for Imagination Technologies Rogue GPUs.
1354
1355%description vulkan-icd-powervr -l pl.UTF-8
1356powervr - sterownik Vulkan dla układów Imagination Technologies Rogue.
1357
075ec3a3
JK
1358%package vulkan-icd-intel
1359Summary: Mesa Vulkan driver for Intel GPUs
3b1b1d06 1360Summary(pl.UTF-8): Sterownik Vulkan dla GPU firmy Intel
075ec3a3
JK
1361License: MIT
1362Group: Libraries
075ec3a3 1363Requires: libdrm >= %{libdrm_ver}
c7ad0447 1364Requires: libxcb >= 1.13
64379599 1365Requires: xorg-lib-libXrandr >= 1.3
c7ad0447
JB
1366Requires: xorg-lib-libxshmfence >= 1.1
1367# wayland-client
1368Requires: wayland >= %{wayland_ver}
9c1f9f63
JB
1369Requires: zlib >= %{zlib_ver}
1370Suggests: vulkan(loader)
0a2670f5 1371Provides: vulkan(icd) = 1.3.204
6d045aec 1372Obsoletes: Mesa-vulkan-icd-intel-devel < 21.1.0
075ec3a3
JK
1373
1374%description vulkan-icd-intel
1375Mesa Vulkan driver for Intel GPUs.
1376
1377%description vulkan-icd-intel -l pl.UTF-8
1378Sterownik Vulkan dla GPU Intela.
1379
37b5b688
JP
1380%package vulkan-icd-lavapipe
1381Summary: lavapipe - Mesa software Vulkan driver
1382Summary(pl.UTF-8): lavapipe - programowy sterownik Vulkan
1383License: MIT
1384Group: Libraries
1385Requires: libdrm >= %{libdrm_ver}
1386Requires: libxcb >= 1.13
1387Requires: xorg-lib-libXrandr >= 1.3
1388Requires: xorg-lib-libxshmfence >= 1.1
1389# wayland-client
1390Requires: wayland >= %{wayland_ver}
1391Requires: zlib >= %{zlib_ver}
1392Suggests: vulkan(loader)
0a2670f5 1393Provides: vulkan(icd) = 1.1.204
37b5b688
JP
1394
1395%description vulkan-icd-lavapipe
1396lavapipe - Mesa software Vulkan driver.
1397
1398%description vulkan-icd-lavapipe -l pl.UTF-8
1399lavapipe - programowy sterownik Vulkan.
1400
1dce271a
JP
1401%package vulkan-icd-panfrost
1402Summary: panfrost - Mesa Vulkan driver for Mali Midgard and Bifrost GPUs
1403Summary(pl.UTF-8): panfrost - sterownik Vulkan dla układów Mali Midgard i Bifrost
1404License: MIT
1405Group: Libraries
1406Requires: libdrm >= %{libdrm_ver}
1407Requires: libxcb >= 1.13
1408Requires: xorg-lib-libXrandr >= 1.3
1409Requires: xorg-lib-libxshmfence >= 1.1
1410# wayland-client
1411Requires: wayland >= %{wayland_ver}
1412Requires: zlib >= %{zlib_ver}
1413Suggests: vulkan(loader)
0a2670f5 1414Provides: vulkan(icd) = 1.1.204
1dce271a
JP
1415
1416%description vulkan-icd-panfrost
1417panfrost - Mesa Vulkan driver for Mali Midgard and Bifrost GPUs.
1418
1419%description vulkan-icd-panfrost -l pl.UTF-8
1420panfrost - sterownik Vulkan dla układów Mali Midgard i Bifrost.
1421
90c5833c
JK
1422%package vulkan-icd-radeon
1423Summary: radv - experimental Mesa Vulkan driver for AMD Radeon GPUs
1424Summary(pl.UTF-8): radv - eksperymentalny sterownik Vulkan dla GPU firmy AMD
1425License: MIT
1426Group: Libraries
c7ad0447
JB
1427Requires: libdrm >= %{libdrm_ver}
1428Requires: libxcb >= 1.13
64379599 1429Requires: xorg-lib-libXrandr >= 1.3
c7ad0447
JB
1430Requires: xorg-lib-libxshmfence >= 1.1
1431# wayland-client
1432Requires: wayland >= %{wayland_ver}
9c1f9f63 1433Requires: zlib >= %{zlib_ver}
90c5833c 1434Suggests: vulkan(loader)
0a2670f5 1435Provides: vulkan(icd) = 1.3.204
90c5833c
JK
1436
1437%description vulkan-icd-radeon
1438radv - experimental Mesa Vulkan driver for AMD Radeon GPUs.
1439
1440%description vulkan-icd-radeon -l pl.UTF-8
1441radv - eksperymentalny sterownik Vulkan dla GPU firmy AMD.
1442
a0b2836a 1443%prep
20b98673 1444%setup -q -n mesa-%{version}
75196731 1445%patch0 -p1
4ce9383b 1446
a0b2836a 1447%build
4ce9383b
JK
1448%if %{with opencl}
1449if [ "$(llvm-config --has-rtti)" != "YES" ] ; then
1450 echo "Clover (gallium OpenCL) requires LLVM with RTTI!"
1451 exit 1
1452fi
1453%endif
1454
59f12de8 1455
428251cb 1456gallium_drivers="virgl swrast %{?with_gallium_zink:zink} \
be821f50 1457%ifarch %{ix86} %{x8664} x32
e4ca490f 1458svga iris %{?with_gallium_i915:i915} crocus \
be821f50 1459%endif
56313830 1460%if %{with gallium_radeon}
fae799e6 1461r300 r600 radeonsi \
56313830 1462%endif
45300693 1463%if %{with gallium_nouveau}
0784ce78 1464nouveau
c1d2b5e2 1465%endif
d91f0cac 1466%ifarch %{arm} aarch64
fae799e6 1467etnaviv \
f31a332e 1468freedreno \
ef3a19d3
JB
1469lima \
1470panfrost \
508e3b71 1471%{?with_gallium_nouveau:tegra} \
d91f0cac 1472v3d \
f31a332e
JB
1473vc4 \
1474%endif
c1d2b5e2 1475"
68c4c1b5 1476# TODO: asahi (Apple Silicon) - arm/aarch64?
c1d2b5e2
AM
1477
1478gallium_drivers=$(echo $gallium_drivers | xargs | tr ' ' ',')
1479
37b5b688 1480vulkan_drivers="swrast %{?with_radv:amd} \
fae799e6
JB
1481%ifarch %{ix86} %{x8664} x32
1482intel \
1483%endif
37b5b688 1484%ifarch %{arm} aarch64
6ec7f8a2 1485freedreno broadcom imagination-experimental panfrost \
37b5b688 1486%endif
fae799e6
JB
1487"
1488
1489vulkan_drivers=$(echo $vulkan_drivers | xargs | tr ' ' ',')
075ec3a3 1490
958c933e
JP
1491%if %{with gallium_rusticl}
1492%ifarch %{arm32_with_hf}
1493export BINDGEN_EXTRA_CLANG_ARGS="-mfloat-abi=hard"
1494%endif
1495%endif
1496
1ea9613c 1497%meson build \
cfad862b
JP
1498 -Dplatforms=x11%{?with_wayland:,wayland} \
1499 -Ddri3=enabled \
1ea9613c 1500 -Ddri-drivers-path=%{_libdir}/xorg/modules/dri \
cfad862b 1501 -Degl=%{?with_egl:enabled}%{!?with_egl:disabled} \
1ea9613c
JK
1502 -Dgallium-drivers=${gallium_drivers} \
1503 %{?with_hud_extra:-Dgallium-extra-hud=true} \
d91f0cac
JB
1504 -Dgallium-nine=%{?with_nine:true}%{!?with_nine:false} \
1505 -Dgallium-omx=%{?with_omx:bellagio}%{!?with_omx:disabled} \
07725da0
JK
1506%if %{with opencl}
1507%if %{with ocl_icd}
1508 -Dgallium-opencl=icd \
1509%else
1510 -Dgallium-opencl=standalone \
1511%endif
9b8203d9 1512 %{?with_gallium_rusticl:-Dgallium-rusticl=true -Drust_std=2021} \
07725da0
JK
1513%else
1514 -Dgallium-opencl=disabled \
1515%endif
cfad862b
JP
1516 -Dgallium-va=%{?with_va:enabled}%{!?with_va:disabled} \
1517 %{?with_vdpau:-Dgallium-vdpau=enabled} \
cfad862b
JP
1518 -Dgallium-xa=%{?with_xa:enabled}%{!?with_xa:disabled} \
1519 -Dgbm=%{?with_gbm:enabled}%{!?with_gbm:disabled} \
d91f0cac 1520 -Dglvnd=%{?with_glvnd:true}%{!?with_glvnd:false} \
cfad862b
JP
1521 -Dlibunwind=enabled \
1522 -Dlmsensors=%{?with_lm_sensors:enabled}%{!?with_lm_sensors:disabled} \
428251cb 1523 %{?with_opencl_spirv:-Dopencl-spirv=true} \
111ed145 1524 -Dosmesa=true \
1ea9613c 1525 -Dselinux=true \
ebbf71b7 1526 -Dsse2=%{__true_false sse2} \
d91f0cac 1527 -Dva-libs-path=%{_libdir}/libva/dri \
20b98673 1528 -Dvideo-codecs=h264dec,h264enc,h265dec,h265enc,vc1dec \
d91f0cac 1529 -Dvulkan-drivers=${vulkan_drivers} \
6ec7f8a2
JP
1530 -Dvulkan-icd-dir=/usr/share/vulkan/icd.d \
1531%ifarch %{arm} aarch64
3e5e7f0e 1532 -Dfreedreno-kmds=msm,virtio \
6ec7f8a2
JP
1533 -Dimagination-srv=true
1534%endif
1ea9613c 1535
67f9fc17 1536%ninja_build -C build
1ea9613c 1537
67f9fc17 1538%{?with_tests:%ninja_test -C build}
34f695f1 1539
a0b2836a 1540%install
f5543b17 1541rm -rf $RPM_BUILD_ROOT
ddde5931 1542
67f9fc17 1543%ninja_install -C build
ddde5931 1544
c329ecfe
JP
1545install -d $RPM_BUILD_ROOT%{_libdir}/gbm
1546
c7f22387 1547# not used externally
0d8bac2a 1548%{__rm} $RPM_BUILD_ROOT%{_libdir}/libglapi.so
075ec3a3 1549
415f6760 1550%if %{without glvnd}
f56e1323
JR
1551# remove "OS ABI: Linux 2.4.20" tag, so private copies (nvidia or fglrx),
1552# set up via /etc/ld.so.conf.d/*.conf will be preferred over this
1553strip -R .note.ABI-tag $RPM_BUILD_ROOT%{_libdir}/libGL.so.*.*
415f6760 1554%endif
f56e1323 1555
abc9e15f
JB
1556%clean
1557rm -rf $RPM_BUILD_ROOT
1558
bb686270
AM
1559%post libEGL -p /sbin/ldconfig
1560%postun libEGL -p /sbin/ldconfig
1561
f445ed6c
JB
1562%post libGL -p /sbin/ldconfig
1563%postun libGL -p /sbin/ldconfig
1564
c1d2b5e2
AM
1565%post libGLES -p /sbin/ldconfig
1566%postun libGLES -p /sbin/ldconfig
1567
c1d2b5e2
AM
1568%post libOSMesa -p /sbin/ldconfig
1569%postun libOSMesa -p /sbin/ldconfig
1570
0c8a4197
JB
1571%post OpenCL-icd -p /sbin/ldconfig
1572%postun OpenCL-icd -p /sbin/ldconfig
1573
e2de95a5
JP
1574%post Rusticl-icd -p /sbin/ldconfig
1575%postun Rusticl-icd -p /sbin/ldconfig
1576
e5bc9334
JB
1577%post libOpenCL -p /sbin/ldconfig
1578%postun libOpenCL -p /sbin/ldconfig
1579
d3cd778a
JB
1580%post libgbm -p /sbin/ldconfig
1581%postun libgbm -p /sbin/ldconfig
1582
c7f22387
JB
1583%post libglapi -p /sbin/ldconfig
1584%postun libglapi -p /sbin/ldconfig
1585
a651d613
JB
1586%post libxatracker -p /sbin/ldconfig
1587%postun libxatracker -p /sbin/ldconfig
1588
bb686270
AM
1589%if %{with egl}
1590%files libEGL
1591%defattr(644,root,root,755)
b720826e
JP
1592%if %{with glvnd}
1593%attr(755,root,root) %{_libdir}/libEGL_mesa.so.*.*
1594%attr(755,root,root) %ghost %{_libdir}/libEGL_mesa.so.0
1595%{_datadir}/glvnd/egl_vendor.d/50_mesa.json
1596%else
bb686270 1597%attr(755,root,root) %{_libdir}/libEGL.so.*.*
c794b508 1598%attr(755,root,root) %ghost %{_libdir}/libEGL.so.1
b720826e 1599%endif
bb686270
AM
1600
1601%files libEGL-devel
1602%defattr(644,root,root,755)
b720826e
JP
1603%if %{with glvnd}
1604%attr(755,root,root) %{_libdir}/libEGL_mesa.so
1605%else
bb686270 1606%attr(755,root,root) %{_libdir}/libEGL.so
bb686270
AM
1607%dir %{_includedir}/EGL
1608%{_includedir}/EGL/egl.h
1609%{_includedir}/EGL/eglext.h
1610%{_includedir}/EGL/eglplatform.h
bb686270 1611%{_pkgconfigdir}/egl.pc
bb686270 1612%endif
9b8203d9 1613%{_includedir}/EGL/eglext_angle.h
29ea40a4
JP
1614%{_includedir}/EGL/eglmesaext.h
1615%endif
bb686270 1616
f445ed6c 1617%files libGL
e9b3ff7a 1618%defattr(644,root,root,755)
cfad862b 1619%doc docs/{*.rst,README.UVD,features.txt,relnotes/*.rst}
415f6760
JB
1620%if %{with glvnd}
1621%attr(755,root,root) %{_libdir}/libGLX_mesa.so.*.*
1622%attr(755,root,root) %ghost %{_libdir}/libGLX_mesa.so.0
1623%attr(755,root,root) %{_libdir}/libGLX_mesa.so
1624%else
9b0e6ebb
JB
1625%attr(755,root,root) %{_libdir}/libGL.so.*.*
1626%attr(755,root,root) %ghost %{_libdir}/libGL.so.1
0cb33a09 1627# symlink for binary apps which fail to conform Linux OpenGL ABI
bf8d2f73 1628# (and dlopen libGL.so instead of libGL.so.1; the same does Mesa libEGL)
0cb33a09 1629%attr(755,root,root) %{_libdir}/libGL.so
415f6760 1630%endif
4ce9383b 1631%{_datadir}/drirc.d
a0b2836a 1632
f445ed6c 1633%files libGL-devel
e9b3ff7a 1634%defattr(644,root,root,755)
cfad862b 1635%doc docs/_extra/specs/*
29ea40a4 1636%if %{without glvnd}
debcd977 1637%dir %{_includedir}/GL
d3dd48bf 1638%{_includedir}/GL/gl.h
56313830 1639%{_includedir}/GL/glcorearb.h
e1833810 1640%{_includedir}/GL/glext.h
d3dd48bf 1641%{_includedir}/GL/glx.h
abc9e15f 1642%{_includedir}/GL/glxext.h
29ea40a4
JP
1643%{_pkgconfigdir}/gl.pc
1644%endif
a0b2836a 1645
c1d2b5e2
AM
1646%files libGLES
1647%defattr(644,root,root,755)
29ea40a4 1648%if %{without glvnd}
cc59a107
JB
1649%attr(755,root,root) %{_libdir}/libGLESv1_CM.so.*.*.*
1650%attr(755,root,root) %ghost %{_libdir}/libGLESv1_CM.so.1
1651%attr(755,root,root) %{_libdir}/libGLESv2.so.*.*
1652%attr(755,root,root) %ghost %{_libdir}/libGLESv2.so.2
29ea40a4 1653%endif
c1d2b5e2
AM
1654
1655%files libGLES-devel
1656%defattr(644,root,root,755)
29ea40a4 1657%if %{without glvnd}
cc59a107
JB
1658%attr(755,root,root) %{_libdir}/libGLESv1_CM.so
1659%attr(755,root,root) %{_libdir}/libGLESv2.so
c1d2b5e2
AM
1660%{_includedir}/GLES
1661%{_includedir}/GLES2
46cee963 1662%{_includedir}/GLES3
cc59a107
JB
1663%{_pkgconfigdir}/glesv1_cm.pc
1664%{_pkgconfigdir}/glesv2.pc
29ea40a4 1665%endif
c1d2b5e2 1666
f4a8c5f6
JB
1667%files libOSMesa
1668%defattr(644,root,root,755)
cc59a107 1669%attr(755,root,root) %{_libdir}/libOSMesa.so.*.*
9bfb354d 1670%attr(755,root,root) %ghost %{_libdir}/libOSMesa.so.8
f4a8c5f6
JB
1671
1672%files libOSMesa-devel
1673%defattr(644,root,root,755)
cc59a107 1674%attr(755,root,root) %{_libdir}/libOSMesa.so
f4a8c5f6 1675%{_includedir}/GL/osmesa.h
bf8d2f73 1676%{_pkgconfigdir}/osmesa.pc
f4a8c5f6 1677
e5bc9334 1678%if %{with opencl}
9b8203d9
JP
1679%if %{with gallium_rusticl}
1680%files Rusticl-icd
1681%defattr(644,root,root,755)
1682/etc/OpenCL/vendors/rusticl.icd
1683%attr(755,root,root) %{_libdir}/libRusticlOpenCL.so
1684%attr(755,root,root) %{_libdir}/libRusticlOpenCL.so.*.*.*
1685%attr(755,root,root) %ghost %{_libdir}/libRusticlOpenCL.so.1
1686%endif
ff879d59
JK
1687%if %{with ocl_icd}
1688%files OpenCL-icd
1689%defattr(644,root,root,755)
1690/etc/OpenCL/vendors/mesa.icd
1691%attr(755,root,root) %{_libdir}/libMesaOpenCL.so
1692%attr(755,root,root) %{_libdir}/libMesaOpenCL.so.*.*.*
1693%attr(755,root,root) %ghost %{_libdir}/libMesaOpenCL.so.1
6f955018
JB
1694# currently only OpenCL uses dynamic pipe loader
1695%dir %{_libdir}/gallium-pipe
ff879d59 1696%else
e5bc9334
JB
1697%files libOpenCL
1698%defattr(644,root,root,755)
1699%attr(755,root,root) %{_libdir}/libOpenCL.so.*.*.*
1700%attr(755,root,root) %ghost %{_libdir}/libOpenCL.so.1
6f955018
JB
1701# currently only OpenCL uses dynamic pipe loader
1702%dir %{_libdir}/gallium-pipe
e5bc9334
JB
1703
1704%files libOpenCL-devel
1705%defattr(644,root,root,755)
1706%attr(755,root,root) %{_libdir}/libOpenCL.so
1707%{_includedir}/CL
e5bc9334 1708%endif
ff879d59 1709%endif
e5bc9334 1710
d3cd778a
JB
1711%if %{with gbm}
1712%files libgbm
1713%defattr(644,root,root,755)
1714%attr(755,root,root) %{_libdir}/libgbm.so.*.*
1715%attr(755,root,root) %ghost %{_libdir}/libgbm.so.1
c329ecfe 1716%dir %{_libdir}/gbm
d3cd778a
JB
1717
1718%files libgbm-devel
1719%defattr(644,root,root,755)
1720%attr(755,root,root) %{_libdir}/libgbm.so
1721%{_includedir}/gbm.h
1722%{_pkgconfigdir}/gbm.pc
1723%endif
1724
c7f22387
JB
1725%files libglapi
1726%defattr(644,root,root,755)
1727%attr(755,root,root) %{_libdir}/libglapi.so.*.*
1728%attr(755,root,root) %ghost %{_libdir}/libglapi.so.0
1729# libglapi-devel? nothing seems to need it atm.
1730#%attr(755,root,root) %{_libdir}/libglapi.so
1731
a651d613
JB
1732%if %{with xa}
1733%files libxatracker
1734%defattr(644,root,root,755)
1735%attr(755,root,root) %{_libdir}/libxatracker.so.*.*
0d8bac2a 1736%attr(755,root,root) %ghost %{_libdir}/libxatracker.so.2
a651d613
JB
1737
1738%files libxatracker-devel
1739%defattr(644,root,root,755)
1740%attr(755,root,root) %{_libdir}/libxatracker.so
1741%{_includedir}/xa_composite.h
1742%{_includedir}/xa_context.h
1743%{_includedir}/xa_tracker.h
1744%{_pkgconfigdir}/xatracker.pc
1745%endif
1746
37d71b73 1747%if %{with egl} && %{without glvnd}
166bc93f
JB
1748%files khrplatform-devel
1749%defattr(644,root,root,755)
1750%dir %{_includedir}/KHR
1751%{_includedir}/KHR/khrplatform.h
1752%endif
37d71b73
JB
1753
1754%files dri-devel
1755%defattr(644,root,root,755)
1756%dir %{_includedir}/GL/internal
1757%{_includedir}/GL/internal/dri_interface.h
1758%{_pkgconfigdir}/dri.pc
166bc93f 1759
0c8a4197
JB
1760### drivers: d3d
1761
1762%if %{with nine}
1763%files d3d
1764%defattr(644,root,root,755)
1765%dir %{_libdir}/d3d
1766%attr(755,root,root) %{_libdir}/d3d/d3dadapter9.so*
1767
1768%files d3d-devel
1769%defattr(644,root,root,755)
1770%{_includedir}/d3dadapter
1771%{_pkgconfigdir}/d3d.pc
1772%endif
1773
1774### drivers: dri
1775
56313830 1776%if %{with gallium_radeon}
afe33c03 1777%files dri-driver-ati-radeon-R300
1778%defattr(644,root,root,755)
1779%attr(755,root,root) %{_libdir}/xorg/modules/dri/r300_dri.so
1780
e68936d0
AM
1781%files dri-driver-ati-radeon-R600
1782%defattr(644,root,root,755)
1783%attr(755,root,root) %{_libdir}/xorg/modules/dri/r600_dri.so
1784
3dc87f1a
AM
1785%files dri-driver-ati-radeon-SI
1786%defattr(644,root,root,755)
1787%attr(755,root,root) %{_libdir}/xorg/modules/dri/radeonsi_dri.so
56313830 1788%endif
6e049c9d 1789
eeb29bbf 1790%ifarch %{ix86} %{x8664} x32
afe33c03 1791%files dri-driver-intel-i915
1792%defattr(644,root,root,755)
5f574b4b 1793%attr(755,root,root) %{_libdir}/xorg/modules/dri/i915_dri.so
afe33c03 1794
ef3a19d3 1795%if %{with gallium}
1dce271a
JP
1796%files dri-driver-intel-crocus
1797%defattr(644,root,root,755)
1798%attr(755,root,root) %{_libdir}/xorg/modules/dri/crocus_dri.so
1799
ef3a19d3
JB
1800%files dri-driver-intel-iris
1801%defattr(644,root,root,755)
1802%attr(755,root,root) %{_libdir}/xorg/modules/dri/iris_dri.so
1803%endif
eeb29bbf 1804%endif
ef3a19d3 1805
3e88bc92
AM
1806%files dri-driver-nouveau
1807%defattr(644,root,root,755)
5b103bd4 1808%if %{with gallium_nouveau}
3e88bc92 1809%attr(755,root,root) %{_libdir}/xorg/modules/dri/nouveau_dri.so
a7a3223c 1810%endif
3e88bc92 1811
f3606317
AM
1812%files dri-driver-swrast
1813%defattr(644,root,root,755)
e22d206b 1814%if %{with gallium}
56313830 1815%attr(755,root,root) %{_libdir}/xorg/modules/dri/kms_swrast_dri.so
e22d206b 1816%endif
f3606317
AM
1817%attr(755,root,root) %{_libdir}/xorg/modules/dri/swrast_dri.so
1818
bb5f0825 1819%if %{with gallium}
c0aada42 1820%ifarch %{arm} aarch64
fae799e6
JB
1821%files dri-driver-etnaviv
1822%defattr(644,root,root,755)
1823%attr(755,root,root) %{_libdir}/xorg/modules/dri/etnaviv_dri.so
fae799e6
JB
1824
1825%files dri-driver-freedreno
1826%defattr(644,root,root,755)
1827%attr(755,root,root) %{_libdir}/xorg/modules/dri/kgsl_dri.so
1828%attr(755,root,root) %{_libdir}/xorg/modules/dri/msm_dri.so
1829
ef3a19d3
JB
1830%files dri-driver-kmsro
1831%defattr(644,root,root,755)
1832%attr(755,root,root) %{_libdir}/xorg/modules/dri/armada-drm_dri.so
1833%attr(755,root,root) %{_libdir}/xorg/modules/dri/exynos_dri.so
1834%attr(755,root,root) %{_libdir}/xorg/modules/dri/hx8357d_dri.so
1835%attr(755,root,root) %{_libdir}/xorg/modules/dri/ili9225_dri.so
1836%attr(755,root,root) %{_libdir}/xorg/modules/dri/ili9341_dri.so
14debca6 1837%attr(755,root,root) %{_libdir}/xorg/modules/dri/imx-dcss_dri.so
ef3a19d3 1838%attr(755,root,root) %{_libdir}/xorg/modules/dri/imx-drm_dri.so
20b98673 1839%attr(755,root,root) %{_libdir}/xorg/modules/dri/imx-lcdif_dri.so
c27fe8bd 1840%attr(755,root,root) %{_libdir}/xorg/modules/dri/ingenic-drm_dri.so
bc0757d7 1841%attr(755,root,root) %{_libdir}/xorg/modules/dri/kirin_dri.so
e4ca490f 1842%attr(755,root,root) %{_libdir}/xorg/modules/dri/komeda_dri.so
1dce271a 1843%attr(755,root,root) %{_libdir}/xorg/modules/dri/mali-dp_dri.so
c27fe8bd 1844%attr(755,root,root) %{_libdir}/xorg/modules/dri/mcde_dri.so
14debca6 1845%attr(755,root,root) %{_libdir}/xorg/modules/dri/mediatek_dri.so
ef3a19d3
JB
1846%attr(755,root,root) %{_libdir}/xorg/modules/dri/meson_dri.so
1847%attr(755,root,root) %{_libdir}/xorg/modules/dri/mi0283qt_dri.so
c27fe8bd 1848%attr(755,root,root) %{_libdir}/xorg/modules/dri/mxsfb-drm_dri.so
ef3a19d3 1849%attr(755,root,root) %{_libdir}/xorg/modules/dri/pl111_dri.so
e4ca490f 1850%attr(755,root,root) %{_libdir}/xorg/modules/dri/rcar-du_dri.so
ef3a19d3
JB
1851%attr(755,root,root) %{_libdir}/xorg/modules/dri/repaper_dri.so
1852%attr(755,root,root) %{_libdir}/xorg/modules/dri/rockchip_dri.so
1853%attr(755,root,root) %{_libdir}/xorg/modules/dri/st7586_dri.so
1854%attr(755,root,root) %{_libdir}/xorg/modules/dri/st7735r_dri.so
c27fe8bd 1855%attr(755,root,root) %{_libdir}/xorg/modules/dri/stm_dri.so
ef3a19d3
JB
1856%attr(755,root,root) %{_libdir}/xorg/modules/dri/sun4i-drm_dri.so
1857
1858%files dri-driver-lima
1859%defattr(644,root,root,755)
1860%attr(755,root,root) %{_libdir}/xorg/modules/dri/lima_dri.so
1861
1862%files dri-driver-panfrost
1863%defattr(644,root,root,755)
1864%attr(755,root,root) %{_libdir}/xorg/modules/dri/panfrost_dri.so
1865
508e3b71 1866%if %{with gallium_nouveau}
ef3a19d3
JB
1867%files dri-driver-tegra
1868%defattr(644,root,root,755)
1869%attr(755,root,root) %{_libdir}/xorg/modules/dri/tegra_dri.so
508e3b71 1870%endif
ef3a19d3
JB
1871
1872%files dri-driver-v3d
1873%defattr(644,root,root,755)
1874%attr(755,root,root) %{_libdir}/xorg/modules/dri/v3d_dri.so
1875
f31a332e
JB
1876%files dri-driver-vc4
1877%defattr(644,root,root,755)
1878%attr(755,root,root) %{_libdir}/xorg/modules/dri/vc4_dri.so
1879%endif
1880
6e049c9d
AM
1881%files dri-driver-virgl
1882%defattr(644,root,root,755)
1883%attr(755,root,root) %{_libdir}/xorg/modules/dri/virtio_gpu_dri.so
1884
eeb29bbf 1885%ifarch %{ix86} %{x8664} x32
e68936d0
AM
1886%files dri-driver-vmwgfx
1887%defattr(644,root,root,755)
9c4e4073 1888%attr(755,root,root) %{_libdir}/xorg/modules/dri/vmwgfx_dri.so
eeb29bbf 1889%endif
428251cb
JB
1890
1891%if %{with gallium_zink}
1892%files dri-driver-zink
1893%defattr(644,root,root,755)
1894%attr(755,root,root) %{_libdir}/xorg/modules/dri/zink_dri.so
1895%endif
bb5f0825 1896%endif
9bfb354d 1897
0c8a4197
JB
1898### drivers: pipe
1899
6f955018 1900%if %{with gallium}
4ce9383b 1901%if %{with opencl}
ef3a19d3 1902%ifarch %{ix86} %{x8664} x32
1dce271a
JP
1903%files pipe-driver-crocus
1904%defattr(644,root,root,755)
1905%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_crocus.so
1906
ef3a19d3 1907%if %{with gallium_i915}
f6f59f90
JP
1908%files pipe-driver-i915
1909%defattr(644,root,root,755)
ef3a19d3
JB
1910%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_i915.so
1911%endif
0f738b6d
JP
1912
1913%files pipe-driver-iris
1914%defattr(644,root,root,755)
1915%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_iris.so
ef3a19d3
JB
1916%endif
1917
3c6d14d1 1918%ifarch %{arm} aarch64
4a6d05d3
JP
1919%files pipe-driver-kmsro
1920%defattr(644,root,root,755)
1921%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_kmsro.so
1922
6f955018
JB
1923%files pipe-driver-msm
1924%defattr(644,root,root,755)
1925%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_msm.so
1926%endif
1927
1928%if %{with gallium_nouveau}
1929%files pipe-driver-nouveau
1930%defattr(644,root,root,755)
1931%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_nouveau.so
1932%endif
1933
1934%if %{with gallium_radeon}
1935%files pipe-driver-r300
1936%defattr(644,root,root,755)
1937%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_r300.so
1938
1939%files pipe-driver-r600
1940%defattr(644,root,root,755)
1941%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_r600.so
1942
1943%files pipe-driver-radeonsi
1944%defattr(644,root,root,755)
1945%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_radeonsi.so
1946%endif
1947
1948%files pipe-driver-swrast
1949%defattr(644,root,root,755)
1950%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_swrast.so
1951
009080b6 1952%ifarch %{ix86} %{x8664} x32
6f955018
JB
1953%files pipe-driver-vmwgfx
1954%defattr(644,root,root,755)
1955%attr(755,root,root) %{_libdir}/gallium-pipe/pipe_vmwgfx.so
4ce9383b 1956%endif
009080b6 1957%endif
4ce9383b 1958%endif
6f955018 1959
0c8a4197
JB
1960### drivers: va
1961
1962%if %{with va}
1963%files -n libva-driver-gallium
1f730540 1964%defattr(644,root,root,755)
1f730540 1965
0c8a4197
JB
1966%if %{with gallium_radeon}
1967%files -n libva-driver-r600
1f730540 1968%defattr(644,root,root,755)
0c8a4197
JB
1969%attr(755,root,root) %{_libdir}/libva/dri/r600_drv_video.so
1970
1971%files -n libva-driver-radeonsi
1972%defattr(644,root,root,755)
1973%attr(755,root,root) %{_libdir}/libva/dri/radeonsi_drv_video.so
1f730540
JB
1974%endif
1975
0c8a4197
JB
1976%if %{with gallium_nouveau}
1977%files -n libva-driver-nouveau
1978%defattr(644,root,root,755)
1979%attr(755,root,root) %{_libdir}/libva/dri/nouveau_drv_video.so
1980%endif
9b8203d9
JP
1981
1982%files -n libva-driver-virtio
1983%defattr(644,root,root,755)
1984%attr(755,root,root) %{_libdir}/libva/dri/virtio_gpu_drv_video.so
0c8a4197
JB
1985%endif
1986
1987### drivers: vdpau
1988
1989%if %{with vdpau}
04c3cb73
JB
1990# ldconfig is not used in vdpau tree, so package all symlinks
1991%if %{with gallium_nouveau}
1992%files -n libvdpau-driver-mesa-nouveau
1993%defattr(644,root,root,755)
46cee963 1994%attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so.1.0.0
4ce9383b 1995%attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so.1.0
04c3cb73
JB
1996%attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so.1
1997%attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so
1998%endif
1999
56313830 2000%if %{with gallium_radeon}
04c3cb73
JB
2001%files -n libvdpau-driver-mesa-r600
2002%defattr(644,root,root,755)
46cee963 2003%attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so.1.0.0
4ce9383b 2004%attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so.1.0
9bfb354d
AM
2005%attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so.1
2006%attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so
04c3cb73 2007
3dc87f1a
AM
2008%files -n libvdpau-driver-mesa-radeonsi
2009%defattr(644,root,root,755)
46cee963 2010%attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so.1.0.0
4ce9383b 2011%attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so.1.0
3dc87f1a
AM
2012%attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so.1
2013%attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so
c3f739d4 2014%endif
9b8203d9
JP
2015
2016%files -n libvdpau-driver-mesa-virtio
2017%defattr(644,root,root,755)
2018%attr(755,root,root) %{_libdir}/vdpau/libvdpau_virtio_gpu.so.1.0.0
2019%attr(755,root,root) %{_libdir}/vdpau/libvdpau_virtio_gpu.so.1.0
2020%attr(755,root,root) %{_libdir}/vdpau/libvdpau_virtio_gpu.so.1
2021%attr(755,root,root) %{_libdir}/vdpau/libvdpau_virtio_gpu.so
56313830 2022%endif
4bacd84c 2023
0c8a4197
JB
2024### drivers: omxil
2025
2026%if %{with omx}
56313830
AM
2027%files -n omxil-mesa
2028%defattr(644,root,root,755)
2029%attr(755,root,root) %{_libdir}/bellagio/libomx_mesa.so
56313830 2030%endif
075ec3a3 2031
0c8a4197
JB
2032### drivers: vulkan
2033
37b5b688
JP
2034%ifarch %{arm} aarch64
2035%files vulkan-icd-broadcom
2036%defattr(644,root,root,755)
2037%attr(755,root,root) %{_libdir}/libvulkan_broadcom.so
2038%{_datadir}/vulkan/icd.d/broadcom_icd.*.json
2039
2040%files vulkan-icd-freedreno
2041%defattr(644,root,root,755)
2042%attr(755,root,root) %{_libdir}/libvulkan_freedreno.so
2043%{_datadir}/vulkan/icd.d/freedreno_icd.*.json
1dce271a 2044
6ec7f8a2
JP
2045%files vulkan-icd-powervr
2046%defattr(644,root,root,755)
2047%attr(755,root,root) %{_libdir}/libpowervr_rogue.so
2048%attr(755,root,root) %{_libdir}/libvulkan_powervr_mesa.so
2049%{_datadir}/vulkan/icd.d/powervr_mesa_icd.*.json
2050
1dce271a
JP
2051%files vulkan-icd-panfrost
2052%defattr(644,root,root,755)
2053%attr(755,root,root) %{_libdir}/libvulkan_panfrost.so
2054%{_datadir}/vulkan/icd.d/panfrost_icd.*.json
37b5b688
JP
2055%endif
2056
eeb29bbf 2057%ifarch %{ix86} %{x8664} x32
075ec3a3
JK
2058%files vulkan-icd-intel
2059%defattr(644,root,root,755)
3b1b1d06 2060%attr(755,root,root) %{_libdir}/libvulkan_intel.so
415f6760 2061%{_datadir}/vulkan/icd.d/intel_icd.*.json
eeb29bbf 2062%endif
90c5833c 2063
37b5b688
JP
2064%files vulkan-icd-lavapipe
2065%defattr(644,root,root,755)
2066%attr(755,root,root) %{_libdir}/libvulkan_lvp.so
2067%{_datadir}/vulkan/icd.d/lvp_icd.*.json
2068
90c5833c
JK
2069%if %{with radv}
2070%files vulkan-icd-radeon
2071%defattr(644,root,root,755)
2072%attr(755,root,root) %{_libdir}/libvulkan_radeon.so
bd9c0ee4 2073%{_datadir}/vulkan/icd.d/radeon_icd.*.json
90c5833c 2074%endif
This page took 1.143052 seconds and 4 git commands to generate.