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