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