]> git.pld-linux.org Git - packages/Mesa.git/blob - Mesa.spec
up to 24.0.5
[packages/Mesa.git] / Mesa.spec
1 #
2 # TODO:
3 # - check if gallium_i915 note is still valid, switch the bcond if not
4 #
5 # Conditional build:
6 %bcond_without  gallium         # gallium drivers
7 %bcond_with     gallium_i915    # gallium i915 Intel driver (instead of plain dri; doesn't work with AIGLX)
8 %bcond_without  gallium_nouveau # gallium nouveau driver
9 %bcond_without  gallium_radeon  # gallium radeon drivers
10 %bcond_without  egl             # EGL libraries
11 %bcond_with     openvg          # OpenVG library [not building since 10.4, dropped in 10.6]
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  ocl_icd         # OpenCL as ICD (installable client driver)
16 %bcond_with     glvnd           # OpenGL vendor neutral dispatcher support
17 %bcond_without  omx             # OpenMAX (Bellagio OMXIL) support
18 %bcond_without  va              # VA library
19 %bcond_without  wayland         # Wayland EGL
20 %bcond_without  xa              # XA state tracker (for vmwgfx xorg driver)
21 %bcond_with     hud_extra       # HUD block/NIC I/O HUD stats support
22 %bcond_with     lm_sensors      # HUD lm_sensors support
23 %bcond_with     texture_float   # floating-point textures and renderbuffers (SGI patent in US)
24 %bcond_with     static_libs     # static libraries [not supported for DRI, thus broken currently]
25 %bcond_with     tests           # tests
26 %bcond_without  shared_llvm     # disable use of the shared LLVM libs
27 %bcond_without  radv            # disable build of the radeon Vulkan driver
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 # minimal supported xserver version
34 %define         xserver_ver             1.5.0
35 # other packages
36 %define         libdrm_ver              2.4.82
37 %define         dri2proto_ver           2.8
38 %define         dri3proto_ver           1.0
39 %define         glproto_ver             1.4.14
40 %define         presentproto_ver        1.0
41 %define         zlib_ver                1.2.8
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_ocl_icd
49 %undefine       with_omx
50 %undefine       with_opencl
51 %undefine       with_xa
52 %endif
53
54 %if %{without egl}
55 %undefine       with_gbm
56 %undefine       with_wayland
57 %endif
58
59 Summary:        Free OpenGL implementation
60 Summary(pl.UTF-8):      Wolnodostępna implementacja standardu OpenGL
61 Name:           Mesa
62 Version:        17.2.6
63 Release:        1
64 License:        MIT (core) and others - see license.html file
65 Group:          X11/Libraries
66 Source0:        ftp://ftp.freedesktop.org/pub/mesa/mesa-%{version}.tar.xz
67 # Source0-md5:  862f2b7e2a08554570b192a89f723b6f
68 Patch0:         %{name}-link.patch
69 URL:            http://www.mesa3d.org/
70 BuildRequires:  autoconf >= 2.60
71 BuildRequires:  automake
72 %{?with_opencl:BuildRequires:   clang-devel >= 3.1}
73 BuildRequires:  elfutils-devel
74 BuildRequires:  expat-devel >= 1.95
75 BuildRequires:  gcc >= 6:4.2.0
76 %{?with_nine:BuildRequires:     gcc-c++ >= 6:4.6}
77 %{?with_opencl:BuildRequires:   gcc-c++ >= 6:4.7}
78 BuildRequires:  libdrm-devel >= %{libdrm_ver}
79 %{?with_glvnd:BuildRequires:    libglvnd-devel >= 0.2.0}
80 BuildRequires:  libselinux-devel
81 BuildRequires:  libstdc++-devel >= 6:4.2.0
82 BuildRequires:  libtalloc-devel >= 2:2.0.1
83 BuildRequires:  libtool >= 2:2.2
84 %{?with_va:BuildRequires:       libva-devel >= 1.6.0}
85 %{?with_va:BuildRequires:       pkgconfig(libva) >= 0.38.0}
86 BuildRequires:  libvdpau-devel >= 1.1
87 BuildRequires:  libxcb-devel >= 1.10
88 # gallium core requires 3.3.0, swr/r600/radeonsi require 3.9.0
89 %{?with_gallium:BuildRequires:  llvm-devel >= 3.9}
90 %{?with_radv:BuildRequires:     llvm-devel >= 3.9}
91 %{?with_opencl:BuildRequires:   llvm-libclc}
92 # for SHA1 (could use also libmd/libsha1/libgcrypt/openssl instead)
93 BuildRequires:  nettle-devel
94 %{?with_ocl_icd:BuildRequires:  ocl-icd-devel}
95 %{?with_omx:BuildRequires:      libomxil-bellagio-devel}
96 BuildRequires:  perl-base
97 BuildRequires:  pixman-devel
98 BuildRequires:  pkgconfig
99 BuildRequires:  pkgconfig(talloc) >= 2.0.1
100 BuildRequires:  pkgconfig(xcb-dri3)
101 BuildRequires:  pkgconfig(xcb-present)
102 BuildRequires:  python >= 2
103 BuildRequires:  python-Mako >= 0.8.0
104 BuildRequires:  python-modules >= 2
105 BuildRequires:  rpmbuild(macros) >= 1.470
106 BuildRequires:  sed >= 4.0
107 # wayland-{client,server}
108 %{?with_wayland:BuildRequires:  wayland-devel >= 1.11.0}
109 %{?with_wayland:BuildRequires:  wayland-protocols >= 1.8}
110 BuildRequires:  xorg-lib-libXdamage-devel >= 1.1
111 BuildRequires:  xorg-lib-libXext-devel >= 1.0.5
112 BuildRequires:  xorg-lib-libXfixes-devel
113 BuildRequires:  xorg-lib-libXt-devel
114 BuildRequires:  xorg-lib-libXvMC-devel >= 1.0.6
115 BuildRequires:  xorg-lib-libXxf86vm-devel
116 BuildRequires:  xorg-lib-libxshmfence-devel >= 1.1
117 BuildRequires:  xorg-proto-dri2proto-devel >= %{dri2proto_ver}
118 BuildRequires:  xorg-proto-dri3proto-devel >= %{dri3proto_ver}
119 BuildRequires:  xorg-proto-glproto-devel >= %{glproto_ver}
120 BuildRequires:  xorg-proto-presentproto-devel >= %{presentproto_ver}
121 BuildRequires:  xorg-util-makedepend
122 %if %{with gallium}
123 %{?with_lm_sensors:BuildRequires:       lm_sensors-devel >= 3.4}
124 BuildRequires:  xorg-proto-xextproto-devel >= 7.0.99.1
125 BuildRequires:  xorg-xserver-server-devel >= %{xserver_ver}
126 %endif
127 BuildRequires:  zlib-devel >= %{zlib_ver}
128 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
129
130 # libGLESv1_CM, libGLESv2, libGL, libOSMesa:
131 #  _glapi_tls_Dispatch is defined in libglapi, but it's some kind of symbol ldd -r doesn't notice(?)
132 # libgbm: circular dependency with libEGL (wayland_buffer_is_drm symbol)
133 %define         skip_post_check_so      libGLESv1_CM.so.1.* libGLESv2.so.2.* libGL.so.1.* libOSMesa.so.* libgbm.*.so.*
134
135 # llvm build broken
136 %define         filterout_ld    -Wl,--as-needed
137
138 %description
139 Mesa is a 3-D graphics library with an API which is very similar to
140 that of OpenGL(R). To the extent that Mesa utilizes the OpenGL command
141 syntax or state machine, it is being used with authorization from
142 Silicon Graphics, Inc. However, the author does not possess an OpenGL
143 license from SGI, and makes no claim that Mesa is in any way a
144 compatible replacement for OpenGL or associated with SGI.
145
146 %description -l pl.UTF-8
147 Mesa jest biblioteką grafiki 3D z API bardzo podobnym do OpenGL(R). Do
148 tego stopnia, że Mesa używa składni i automatu OpenGL jest używana z
149 autoryzacją Silicon Graphics, Inc. Jednak autor nie posiada licencji
150 OpenGL od SGI i nie twierdzi, że Mesa jest kompatybilnym zamiennikiem
151 OpenGL ani powiązana z SGI.
152
153 %package libEGL
154 Summary:        Mesa implementation of EGL Native Platform Graphics Interface library
155 Summary(pl.UTF-8):      Implementacja Mesa biblioteki interfejsu EGL
156 License:        MIT
157 Group:          Libraries
158 Requires:       %{name}-libglapi = %{version}-%{release}
159 # glx driver in libEGL dlopens libGL.so
160 Requires:       OpenGL >= 1.2
161 Requires:       libdrm >= %{libdrm_ver}
162 Requires:       libxcb >= 1.9
163 %{?with_wayland:Requires:       wayland >= 1.11.0}
164 %if %{with gbm}
165 Requires:       %{name}-libgbm = %{version}-%{release}
166 %endif
167 Provides:       EGL = 1.5
168
169 %description libEGL
170 This package contains shared libEGL - Mesa implementation of EGL
171 Native Platform Graphics Interface as specified by Khronos Group:
172 <http://www.khronos.org/egl/>.
173
174 %description libEGL -l pl.UTF-8
175 Ten pakiet zawiera bibliotekę współdzieloną libEGL - implementację
176 Mesa standardu EGL Native Platform Graphics Interface (interfejsu
177 graficznego platformy natywnej) wg specyfikacji Khronos Group:
178 <http://www.khronos.org/egl/>.
179
180 %package libEGL-devel
181 Summary:        Header files for Mesa implementation of EGL library
182 Summary(pl.UTF-8):      Pliki nagłówkowe implementacji Mesa biblioteki EGL
183 License:        MIT
184 Group:          Development/Libraries
185 Requires:       %{name}-khrplatform-devel = %{version}-%{release}
186 Requires:       %{name}-libEGL = %{version}-%{release}
187 Requires:       libdrm-devel >= %{libdrm_ver}
188 Requires:       xorg-lib-libX11-devel
189 Requires:       xorg-lib-libXdamage-devel >= 1.1
190 Requires:       xorg-lib-libXext-devel >= 1.0.5
191 Requires:       xorg-lib-libXfixes-devel
192 Requires:       xorg-lib-libXxf86vm-devel
193 Requires:       xorg-proto-dri2proto-devel >= %{dri2proto_ver}
194 Requires:       xorg-proto-glproto-devel >= %{glproto_ver}
195 Provides:       EGL-devel = 1.5
196
197 %description libEGL-devel
198 Header files for Mesa implementation of EGL library.
199
200 %description libEGL-devel -l pl.UTF-8
201 Pliki nagłówkowe implementacji Mesa biblioteki EGL.
202
203 %package libEGL-static
204 Summary:        Static Mesa EGL library
205 Summary(pl.UTF-8):      Statyczna biblioteka Mesa EGL
206 License:        MIT
207 Group:          Development/Libraries
208 Requires:       %{name}-libEGL-devel = %{version}-%{release}
209 Provides:       EGL-static = 1.5
210
211 %description libEGL-static
212 Static Mesa EGL library.
213
214 %description libEGL-static -l pl.UTF-8
215 Statyczna biblioteka Mesa EGL.
216
217 %package libGL
218 Summary:        Free Mesa3D implementation of libGL OpenGL library
219 Summary(pl.UTF-8):      Wolnodostępna implementacja Mesa3D biblioteki libGL ze standardu OpenGL
220 License:        MIT
221 Group:          X11/Libraries
222 Requires:       %{name}-libglapi = %{version}-%{release}
223 Requires:       libdrm >= %{libdrm_ver}
224 Requires:       xorg-lib-libXdamage >= 1.1
225 Provides:       OpenGL = 4.5
226 Provides:       OpenGL-GLX = 1.4
227 Obsoletes:      Mesa
228 Obsoletes:      Mesa-dri
229 Obsoletes:      Mesa-dri-core < 10.0.0
230 Obsoletes:      X11-OpenGL-libGL < 1:7.0.0
231 Obsoletes:      XFree86-OpenGL-libGL < 1:7.0.0
232
233 %description libGL
234 Mesa is a 3-D graphics library with an API which is very similar to
235 that of OpenGL(R). To the extent that Mesa utilizes the OpenGL command
236 syntax or state machine, it is being used with authorization from
237 Silicon Graphics, Inc. However, the author does not possess an OpenGL
238 license from SGI, and makes no claim that Mesa is in any way a
239 compatible replacement for OpenGL or associated with SGI.
240
241 This package contains libGL which implements OpenGL 4.5 and GLX 1.4
242 specifications. It uses DRI for rendering.
243
244 %description libGL -l pl.UTF-8
245 Mesa jest biblioteką grafiki 3D z API bardzo podobnym do OpenGL(R). Do
246 tego stopnia, że Mesa używa składni i automatu OpenGL jest używana z
247 autoryzacją Silicon Graphics, Inc. Jednak autor nie posiada licencji
248 OpenGL od SGI i nie twierdzi, że Mesa jest kompatybilnym zamiennikiem
249 OpenGL ani powiązana z SGI.
250
251 Ten pakiet zawiera libGL implementującą specyfikacje OpenGL 4.5 oraz
252 GLX 1.4. Używa DRI do renderowania.
253
254 %package libGL-devel
255 Summary:        Header files for Mesa3D libGL library
256 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libGL z projektu Mesa3D
257 License:        MIT
258 Group:          X11/Development/Libraries
259 # loose dependency on libGL to use with other libGL binaries
260 Requires:       OpenGL >= 1.5
261 Requires:       libdrm-devel >= %{libdrm_ver}
262 Requires:       xorg-lib-libX11-devel
263 Requires:       xorg-lib-libXdamage-devel >= 1.1
264 Requires:       xorg-lib-libXext-devel >= 1.0.5
265 Requires:       xorg-lib-libXxf86vm-devel
266 Requires:       xorg-proto-dri2proto-devel >= %{dri2proto_ver}
267 Requires:       xorg-proto-glproto-devel >= %{glproto_ver}
268 Suggests:       OpenGL-doc-man
269 Provides:       OpenGL-GLX-devel = 1.4
270 Provides:       OpenGL-devel = 4.5
271 Obsoletes:      Mesa-devel
272 Obsoletes:      X11-OpenGL-devel < 1:7.0.0
273 Obsoletes:      X11-OpenGL-devel-base < 1:7.0.0
274 Obsoletes:      XFree86-OpenGL-devel < 1:7.0.0
275 Obsoletes:      XFree86-OpenGL-devel-base < 1:7.0.0
276
277 %description libGL-devel
278 Header files for Mesa3D libGL library.
279
280 %description libGL-devel -l pl.UTF-8
281 Pliki nagłówkowe biblioteki libGL z projektu Mesa3D.
282
283 %package libGL-static
284 Summary:        Static Mesa3D libGL library
285 Summary(pl.UTF-8):      Statyczna biblioteka libGL z projektu Mesa3D
286 License:        MIT
287 Group:          X11/Development/Libraries
288 Requires:       %{name}-libGL-devel = %{version}-%{release}
289 Provides:       OpenGL-static = 4.5
290 Obsoletes:      Mesa-static
291 Obsoletes:      X11-OpenGL-static < 1:7.0.0
292 Obsoletes:      XFree86-OpenGL-static < 1:7.0.0
293
294 %description libGL-static
295 Static Mesa3D libGL library. It uses software renderer.
296
297 %description libGL-static -l pl.UTF-8
298 Statyczna biblioteka libGL z projektu Mesa3D. Używa programowego
299 renderingu.
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 Provides:       OpenGLES
307 Provides:       OpenGLESv1 = 1.1
308 Provides:       OpenGLESv2 = 2.0
309 Provides:       OpenGLESv3 = 3.2
310
311 %description libGLES
312 This package contains shared libraries of Mesa implementation of GLES
313 (OpenGL ES) - cross-platform API for full-function 2D and 3D graphics
314 on embedded systems. OpenGL ES specification can be found on Khronos
315 Group site: <http://www.khronos.org/opengles/>. Mesa implements OpenGL
316 ES 1.1 and 2.0.
317
318 %description libGLES -l pl.UTF-8
319 Ten pakiet zawiera biblioteki współdzielone implementacji Mesa
320 standardu GLES (OpenGL ES) - wieloplatformowego API do w pełni
321 funkcjonalnej grafiki 2D i 3D na systemach wbudowanych. Specyfikację
322 OpenGL ES można znaleźć na stronie Khronos Group:
323 <http://www.khronos.org/opengles/>. Mesa zawiera implementacją OpenGL
324 ES 1.1 i 2.0.
325
326 %package libGLES-devel
327 Summary:        Header files for Mesa GLES libraries
328 Summary(pl.UTF-8):      Pliki nagłówkowe bibliotek Mesa GLES
329 Group:          Development/Libraries
330 Requires:       %{name}-khrplatform-devel = %{version}-%{release}
331 # <EGL/egl.h> for <GLES/egl.h>
332 Requires:       %{name}-libEGL-devel = %{version}-%{release}
333 Requires:       %{name}-libGLES = %{version}-%{release}
334 Provides:       OpenGLES-devel
335 Provides:       OpenGLESv1-devel = 1.1
336 Provides:       OpenGLESv2-devel = 2.0
337 Provides:       OpenGLESv3-devel = 3.2
338
339 %description libGLES-devel
340 Header files for Mesa GLES libraries.
341
342 %description libGLES-devel -l pl.UTF-8
343 Pliki nagłówkowe bibliotek Mesa GLES.
344
345 %package libOSMesa
346 Summary:        OSMesa (off-screen renderer) library
347 Summary(pl.UTF-8):      Biblioteka OSMesa (renderująca bitmapy w pamięci)
348 License:        MIT
349 Group:          Libraries
350 Requires:       zlib >= %{zlib_ver}
351
352 %description libOSMesa
353 OSMesa (off-screen renderer) library.
354
355 %description libOSMesa -l pl.UTF-8
356 Biblioteka OSMesa (renderująca bitmapy w pamięci).
357
358 %package libOSMesa-devel
359 Summary:        Header file for OSMesa (off-screen renderer) library
360 Summary(pl.UTF-8):      Plik nagłówkowy biblioteki OSMesa (renderującej bitmapy w pamięci)
361 License:        MIT
362 Group:          Development/Libraries
363 Requires:       %{name}-libOSMesa = %{version}-%{release}
364 # for <GL/gl.h> only
365 Requires:       OpenGL-devel
366 Requires:       libselinux-devel
367
368 %description libOSMesa-devel
369 Header file for OSMesa (off-screen renderer) library.
370
371 %description libOSMesa-devel -l pl.UTF-8
372 Plik nagłówkowy biblioteki OSMesa (renderującej bitmapy w pamięci).
373
374 %package libOSMesa-static
375 Summary:        Static OSMesa (off-screen renderer) library
376 Summary(pl.UTF-8):      Biblioteka statyczna OSMesa (renderująca bitmapy w pamięci)
377 License:        MIT
378 Group:          Development/Libraries
379 Requires:       %{name}-libOSMesa-devel = %{version}-%{release}
380 # this static build of OSMesa needs static non-dri Mesa implementation
381 Requires:       %{name}-libGL-static = %{version}-%{release}
382
383 %description libOSMesa-static
384 Static OSMesa (off-screen renderer) library.
385
386 %description libOSMesa-static -l pl.UTF-8
387 Biblioteka statyczna OSMesa (renderująca bitmapy w pamięci).
388
389 %package OpenCL-icd
390 Summary:        Mesa implementation of OpenCL (Compuing Language) API ICD
391 Summary(pl.UTF-8):      Implementacja Mesa API OpenCL (języka obliczeń) ICD
392 License:        MIT
393 Group:          Libraries
394 Requires:       filesystem >= 4.0-29
395 Requires:       libdrm >= %{libdrm_ver}
396 Requires:       llvm-libclc
397 Requires:       zlib >= %{zlib_ver}
398 Provides:       OpenCL = 1.1
399 Provides:       ocl-icd-driver
400
401 %description OpenCL-icd
402 This package contains Mesa implementation of OpenCL - standard for
403 cross-platform, parallel programming of modern processors found in
404 personal computers, servers and handheld/embedded devices. OpenCL
405 specification can be found on Khronos Group site:
406 <http://www.khronos.org/opencl/>. Mesa implements OpenCL 1.1.
407
408 The implementation is provided as an installable client driver (ICD)
409 for use with the ocl-icd loader.
410
411 %description OpenCL-icd -l pl.UTF-8
412 Ten pakiet zawiera implementację Mesa standardu OpenCL - standardu
413 wieloplatformowego, równoległego programowania nowoczesnych
414 procesorów, jakie znajdują się w komputerach osobistych, serwerach
415 oraz urządzeniach przenośnych/wbudowanych. Specyfikację OpenCL można
416 znaleźć na stronie Khronos Group: <http://www.khronos.org/opencl/>.
417 Mesa zawiera implementację OpenCL w wersji 1.1.
418
419 Implementacja dostarczona jest w postaci instalowalnego sterownika klienta
420 (ICD), który może być użyty z loaderem ocl-icd.
421
422 %package libOpenCL
423 Summary:        Mesa implementation of OpenCL (Compuing Language) API
424 Summary(pl.UTF-8):      Implementacja Mesa API OpenCL (języka obliczeń)
425 License:        MIT
426 Group:          Libraries
427 Requires:       libdrm >= %{libdrm_ver}
428 Requires:       llvm-libclc
429 Provides:       OpenCL = 1.1
430
431 %description libOpenCL
432 This package contains Mesa implementation of OpenCL - standard for
433 cross-platform, parallel programming of modern processors found in
434 personal computers, servers and handheld/embedded devices. OpenCL
435 specification can be found on Khronos Group site:
436 <http://www.khronos.org/opencl/>. Mesa implements OpenCL 1.1.
437
438 %description libOpenCL -l pl.UTF-8
439 Ten pakiet zawiera implementację Mesa standardu OpenCL - standardu
440 wieloplatformowego, równoległego programowania nowoczesnych
441 procesorów, jakie znajdują się w komputerach osobistych, serwerach
442 oraz urządzeniach przenośnych/wbudowanych. Specyfikację OpenCL można
443 znaleźć na stronie Khronos Group: <http://www.khronos.org/opencl/>.
444 Mesa zawiera implementację OpenCL w wersji 1.1.
445
446 %package libOpenCL-devel
447 Summary:        Header files for Mesa OpenCL library
448 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki Mesa OpenCL
449 License:        MIT
450 Group:          Development/Libraries
451 Requires:       %{name}-libOpenCL = %{version}-%{release}
452 Provides:       OpenCL-devel = 1.2
453
454 %description libOpenCL-devel
455 Header files for Mesa OpenCL library.
456
457 %description libOpenCL-devel -l pl.UTF-8
458 Pliki nagłówkowe biblioteki Mesa OpenCL.
459
460 %package libOpenVG
461 Summary:        Mesa implementation of OpenVG (Vector Graphics Accelleration) API
462 Summary(pl.UTF-8):      Implementacja Mesa API OpenVG (akceleracji grafiki wektorowej)
463 License:        MIT
464 Group:          Libraries
465 Provides:       OpenVG = 1.1
466
467 %description libOpenVG
468 This package contains Mesa implementation of OpenVG - cross-platform
469 API that provides a low-level hardware acceleration interface for
470 vector graphics libraries such as Flash and SVG. OpenVG specification
471 can be found on Khronos Group site: <http://www.khronos.org/openvg/>.
472 Mesa implements OpenVG 1.1.
473
474 %description libOpenVG -l pl.UTF-8
475 Ten pakiet zawiera implementację Mesa standardu OpenVG -
476 wieloplatfomowego API zapewniającego niskopoziomowy interfejs
477 akceleracji sprzętowej dla bibliotek grafiki wektorowej, takiej jak
478 Flash czy SVG. Specyfikację OpenVG można znaleźć na stronie Khronos
479 Group: <http://www.khronos.org/openvg/>. Mesa zawiera implementację
480 OpenVG w wersji 1.1.
481
482 %package libOpenVG-devel
483 Summary:        Header file for Mesa OpenVG library
484 Summary(pl.UTF-8):      Plik nagłówkowy biblioteki Mesa OpenVG
485 License:        MIT
486 Group:          Development/Libraries
487 Requires:       %{name}-khrplatform-devel = %{version}-%{release}
488 Requires:       %{name}-libOpenVG = %{version}-%{release}
489 Provides:       OpenVG-devel = 1.1
490
491 %description libOpenVG-devel
492 Header file for Mesa OpenVG library.
493
494 %description libOpenVG-devel -l pl.UTF-8
495 Plik nagłówkowy biblioteki Mesa OpenVG.
496
497 %package libXvMC-nouveau
498 Summary:        Mesa implementation of XvMC API for NVidia adapters
499 Summary(pl.UTF-8):      Implementacja Mesa API XvMC dla kart NVidia
500 License:        MIT
501 Group:          Libraries
502 Requires:       libdrm >= %{libdrm_ver}
503 Requires:       xorg-lib-libXvMC >= 1.0.6
504 Requires:       zlib >= %{zlib_ver}
505 Conflicts:      Mesa-libXvMC
506
507 %description libXvMC-nouveau
508 Mesa implementation of XvMC API for NVidia adapters (NV40-NV96, NVa0).
509
510 %description libXvMC-nouveau -l pl.UTF-8
511 Implementacja Mesa API XvMC dla kart NVidia (NV40-NV96, NVa0).
512
513 %package libXvMC-r600
514 Summary:        Mesa implementation of XvMC API for ATI Radeon R600 series adapters
515 Summary(pl.UTF-8):      Implementacja Mesa API XvMC dla kart ATI Radeon z serii R600
516 License:        MIT
517 Group:          Libraries
518 Requires:       libdrm >= %{libdrm_ver}
519 Requires:       xorg-lib-libXvMC >= 1.0.6
520 Requires:       zlib >= %{zlib_ver}
521 Conflicts:      Mesa-libXvMC
522
523 %description libXvMC-r600
524 Mesa implementation of XvMC API for ATI Radeon adapters based on
525 R600/R700 chips.
526
527 %description libXvMC-r600 -l pl.UTF-8
528 Implementacja Mesa API XvMC dla kart ATI Radeon opartych na układach
529 R600/R700.
530
531 %package -n libva-driver-gallium
532 Summary:        VA driver for Gallium State Tracker
533 Summary(pl.UTF-8):      Sterowniki VA do Gallium
534 Group:          Libraries
535 %if %{with gallium_radeon}
536 Requires:       libva-driver-r600
537 Requires:       libva-driver-radeonsi
538 %endif
539 %if %{with gallium_nouveau}
540 Requires:       libva-driver-nouveau
541 %endif
542
543 %description -n libva-driver-gallium
544 VA drivers for Gallium State Tracker (r600, radeonsi & nouveau).
545
546 %description -n libva-driver-gallium -l pl.UTF-8
547 Sterowniki VA do Gallium (r600, radeonsi & nouveau).
548
549 %package -n libva-driver-r600
550 Summary:        VA driver for ATI Radeon R600 series adapters
551 Summary(pl.UTF-8):      Sterownik VA dla kart ATI Radeon z serii R600
552 Group:          Libraries
553 Requires:       libva >= 1.6.0
554 Requires:       zlib >= %{zlib_ver}
555
556 %description -n libva-driver-r600
557 VA driver for ATI Radeon R600 series adapters.
558
559 %description -n libva-driver-r600 -l pl.UTF-8
560 Sterownik VA dla kart ATI Radeon z serii R600.
561
562 %package -n libva-driver-radeonsi
563 Summary:        VA driver for ATI Radeon SI adapters
564 Summary(pl.UTF-8):      Sterownik VA dla kart ATI Radeon SI
565 Group:          Libraries
566 Requires:       libva >= 1.6.0
567 Requires:       zlib >= %{zlib_ver}
568
569 %description -n libva-driver-radeonsi
570 VA driver for ATI Radeon adapters based on Southern Islands chips.
571
572 %description -n libva-driver-radeonsi -l pl.UTF-8
573 Sterownik VA dla kart ATI Radeon opartych na układach Southern
574 Islands.
575
576 %package -n libva-driver-nouveau
577 Summary:        VA driver for NVidia adapters
578 Summary(pl.UTF-8):      Sterownik VA dla kart NVidia
579 Group:          Libraries
580 Requires:       libva >= 1.6.0
581 Requires:       zlib >= %{zlib_ver}
582
583 %description -n libva-driver-nouveau
584 VA driver for NVidia adapters.
585
586 %description -n libva-driver-nouveau -l pl.UTF-8
587 Sterownik VA dla kart NVidia.
588
589 %package libgbm
590 Summary:        Mesa Graphics Buffer Manager library
591 Summary(pl.UTF-8):      Biblioteka Mesa Graphics Buffer Manager
592 Group:          Libraries
593 Requires:       %{name}-libglapi = %{version}-%{release}
594 Conflicts:      Mesa-libEGL < 8.0.1-2
595
596 %description libgbm
597 Mesa Graphics Buffer Manager library.
598
599 %description libgbm -l pl.UTF-8
600 Biblioteka Mesa Graphics Buffer Manager (zarządcy bufora graficznego).
601
602 %package libgbm-devel
603 Summary:        Header file for Mesa Graphics Buffer Manager library
604 Summary(pl.UTF-8):      Plik nagłówkowy biblioteki Mesa Graphics Buffer Manager
605 Group:          Development/Libraries
606 Requires:       %{name}-libgbm = %{version}-%{release}
607
608 %description libgbm-devel
609 Header file for Mesa Graphics Buffer Manager library.
610
611 %description libgbm-devel -l pl.UTF-8
612 Plik nagłówkowy biblioteki Mesa Graphics Buffer Manager (zarządcy
613 bufora graficznego).
614
615 %package libglapi
616 Summary:        Mesa GL API shared library
617 Summary(pl.UTF-8):      Biblioteka współdzielona Mesa GL API
618 Group:          Libraries
619 Conflicts:      Mesa-libEGL < 8.0.1-2
620
621 %description libglapi
622 Mesa GL API shared library, common for various APIs (EGL, GL, GLES).
623
624 %description libglapi -l pl.UTF-8
625 Biblioteka współdzielona Mesa GL API, wspólna dla różnych API (EGL,
626 GL, GLES).
627
628 %package libwayland-egl
629 Summary:        Wayland EGL library
630 Summary(pl.UTF-8):      Biblioteka Wayland EGL
631 Group:          Libraries
632 Requires:       libdrm >= %{libdrm_ver}
633
634 %description libwayland-egl
635 Wayland EGL platform library.
636
637 %description libwayland-egl -l pl.UTF-8
638 Biblioteka platformy EGL Wayland.
639
640 %package libwayland-egl-devel
641 Summary:        Development files for Wayland EGL library
642 Summary(pl.UTF-8):      Pliki programistyczne biblioteki Wayland EGL
643 Group:          Development/Libraries
644 Requires:       %{name}-libwayland-egl = %{version}-%{release}
645 Requires:       libdrm-devel >= %{libdrm_ver}
646
647 %description libwayland-egl-devel
648 Development files for Wayland EGL platform library.
649
650 %description libwayland-egl-devel -l pl.UTF-8
651 Pliki programistyczne biblioteki platformy EGL Wayland.
652
653 %package libxatracker
654 Summary:        Xorg Gallium3D accelleration library
655 Summary(pl.UTF-8):      Biblioteka akceleracji Gallium3D dla Xorg
656 Group:          X11/Libraries
657 Requires:       libdrm >= %{libdrm_ver}
658 Requires:       zlib >= %{zlib_ver}
659
660 %description libxatracker
661 Xorg Gallium3D accelleration library (used by new vmwgfx driver).
662
663 %description libxatracker -l pl.UTF-8
664 Biblioteka akceleracji Gallium3D dla Xorg (używana przez nowy
665 sterownik vmwgfx).
666
667 %package libxatracker-devel
668 Summary:        Header files for Xorg Gallium3D accelleration library
669 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki akceleracji Gallium3D dla Xorg
670 Group:          X11/Development/Libraries
671 Requires:       %{name}-libxatracker = %{version}-%{release}
672 Requires:       libdrm-devel >= %{libdrm_ver}
673
674 %description libxatracker-devel
675 Header files for Xorg Gallium3D accelleration library.
676
677 %description libxatracker-devel -l pl.UTF-8
678 Pliki nagłówkowe biblioteki akceleracji Gallium3D dla Xorg.
679
680 %package khrplatform-devel
681 Summary:        Khronos platform header file
682 Summary(pl.UTF-8):      Plik nagłówkowy platformy Khronos
683 Group:          Development/Libraries
684 Conflicts:      Mesa-libEGL-devel < 8.0.1-2
685
686 %description khrplatform-devel
687 Khronos platform header file.
688
689 %description khrplatform-devel -l pl.UTF-8
690 Plik nagłówkowy platformy Khronos.
691
692 %package dri-driver-ati-radeon-R100
693 Summary:        X.org DRI driver for ATI R100 card family
694 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart ATI R100
695 License:        MIT
696 Group:          X11/Libraries
697 Requires:       xorg-driver-video-ati
698 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
699 Requires:       xorg-xserver-server >= %{xserver_ver}
700 Requires:       zlib >= %{zlib_ver}
701 Obsoletes:      X11-driver-radeon-dri < 1:7.0.0
702
703 %description dri-driver-ati-radeon-R100
704 X.org DRI driver for ATI R100 card family (Radeon 7000-7500). It
705 supports R100, RV100, RS100, RV200, RS200, RS250.
706
707 %description dri-driver-ati-radeon-R100 -l pl.UTF-8
708 Sterownik X.org DRI dla rodziny kart ATI R100 (Radeon 7000-7500).
709 Obsługuje układy R100, RV100, RS100, RV200, RS200, RS250.
710
711 %package dri-driver-ati-radeon-R200
712 Summary:        X.org DRI driver for ATI R200 card family
713 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart ATI R200
714 License:        MIT
715 Group:          X11/Libraries
716 Requires:       xorg-driver-video-ati
717 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
718 Requires:       xorg-xserver-server >= %{xserver_ver}
719 Requires:       zlib >= %{zlib_ver}
720 Obsoletes:      X11-driver-radeon-dri < 1:7.0.0
721
722 %description dri-driver-ati-radeon-R200
723 X.org DRI driver for ATI R200 card family (Radeon 8500-92xx). It
724 supports R200, RV250, RV280, RS300, RS350 chips.
725
726 %description dri-driver-ati-radeon-R200 -l pl.UTF-8
727 Sterownik X.org DRI dla rodziny kart ATI R200 (Radeon 8500-92xx).
728 Obsługuje układy R200, RV250, RV280, RS300, RS350.
729
730 %package dri-driver-ati-radeon-R300
731 Summary:        X.org DRI driver for ATI R300 card family
732 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart ATI R300
733 License:        MIT
734 Group:          X11/Libraries
735 Requires:       xorg-driver-video-ati
736 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
737 Requires:       xorg-xserver-server >= %{xserver_ver}
738 Requires:       zlib >= %{zlib_ver}
739 Obsoletes:      X11-driver-radeon-dri < 1:7.0.0
740
741 %description dri-driver-ati-radeon-R300
742 X.org Gallium DRI driver for ATI R300/R400/RS690/R500 card family
743 (Radeon 9600-9800, X300-X2300). It supports R300, R350, R360, RV350,
744 RV370, RV380, R420, R423, R430, R480, R481, RV410, RS400, RC410,
745 RS480, RS482, R520, RV515, RV530, RV560, RV570, R580, RS600, RS690,
746 RS740 chips.
747
748 %description dri-driver-ati-radeon-R300 -l pl.UTF-8
749 Sterownik X.org DRI Gallium dla rodziny kart ATI R300/R400/RS690/R500
750 (Radeon 9600-9800, X300-X2300). Obsługuje układy R300, R350, R360,
751 RV350, RV370, RV380, R420, R423, R430, R480, R481, RV410, RS400,
752 RC410, RS480, RS482, R520, RV515, RV530, RV560, RV570, R580, RS600,
753 RS690, RS740.
754
755 %package dri-driver-ati-radeon-R600
756 Summary:        X.org DRI driver for ATI R600 card family
757 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart ATI R600
758 License:        MIT
759 Group:          X11/Libraries
760 Requires:       radeon-ucode
761 Requires:       xorg-driver-video-ati
762 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
763 Requires:       xorg-xserver-server >= %{xserver_ver}
764 Requires:       zlib >= %{zlib_ver}
765
766 %description dri-driver-ati-radeon-R600
767 X.org Gallium DRI driver for ATI R600/R700 card family (Radeon HD
768 2400-7000). It supports R600, RV610, RV630, RV670, RV620, RV635,
769 RS780, RS880, RV770, RV730, RV710, RV740, CEDAR, REDWOOD, JUNIPER,
770 CYPRESS, HEMLOCK, PALM, SUMO/SUMO2, CAYMAN, BARTS, TURKS, CAICOS,
771 ARUBA chips.
772
773 %description dri-driver-ati-radeon-R600 -l pl.UTF-8
774 Sterownik X.org DRI Gallium dla rodziny kart ATI R600/R700 (Radeon HD
775 2400-7000). Obsługuje układy R600, RV610, RV630, RV670, RV620, RV635,
776 RS780, RS880, RV770, RV730, RV710, RV740, CEDAR, REDWOOD, JUNIPER,
777 CYPRESS, HEMLOCK, PALM, SUMO/SUMO2, CAYMAN, BARTS, TURKS, CAICOS,
778 ARUBA.
779
780 %package dri-driver-ati-radeon-SI
781 Summary:        X.org DRI driver for ATI Southern Islands card family
782 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart ATI Southern Islands
783 License:        MIT
784 Group:          X11/Libraries
785 Requires:       radeon-ucode
786 Requires:       xorg-driver-video-ati
787 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
788 Requires:       xorg-xserver-server >= %{xserver_ver}
789 Requires:       zlib >= %{zlib_ver}
790
791 %description dri-driver-ati-radeon-SI
792 X.org Gallium DRI driver for ATI Southern Islands card family (Radeon
793 HD 7700-8000, R9, APU). It supports TAHITI, PITCAIRN, VERDE, OLAND,
794 HAINAN, BONAIRE, KABINI, MULLINS, KAVERI, HAWAII, ICELAND, TONGA,
795 CARRIZO, FIJI, POLARIS, STONEY chips.
796
797 %description dri-driver-ati-radeon-SI -l pl.UTF-8
798 Sterownik X.org DRI Gallium dla rodziny kart ATI Southern Islands
799 (Radeon HD 7700-8000, R9, APU). Obsługuje układy TAHITI, PITCAIRN,
800 VERDE, OLAND, HAINAN, BONAIRE, KABINI, MULLINS, KAVERI, HAWAII,
801 ICELAND, TONGA, CARRIZO, FIJI, POLARIS, STONEY.
802
803 %package dri-driver-etnaviv
804 Summary:        X.org DRI driver for Vivante 3D chips
805 Summary(pl.UTF-8):      Sterownik X.org DRI dla układów Vivante 3D
806 License:        MIT
807 Group:          X11/Libraries
808 #Requires:      xorg-driver-video-?
809 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
810 Requires:       xorg-xserver-server >= %{xserver_ver}
811 Requires:       zlib >= %{zlib_ver}
812
813 %description dri-driver-etnaviv
814 X.org DRI driver for Vivante 3D chips.
815
816 %description dri-driver-etnaviv -l pl.UTF-8
817 Sterownik X.org DRI dla układów Vivante 3D.
818
819 %package dri-driver-freedreno
820 Summary:        X.org DRI driver for Adreno chips
821 Summary(pl.UTF-8):      Sterownik X.org DRI dla układów Adreno
822 License:        MIT
823 Group:          X11/Libraries
824 Requires:       xorg-driver-video-freedreno
825 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
826 Requires:       xorg-xserver-server >= %{xserver_ver}
827 Requires:       zlib >= %{zlib_ver}
828
829 %description dri-driver-freedreno
830 X.org DRI driver for Adreno chips.
831
832 %description dri-driver-freedreno -l pl.UTF-8
833 Sterownik X.org DRI dla układów Adreno.
834
835 %package dri-driver-intel-i915
836 Summary:        X.org DRI driver for Intel i915 card family
837 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart Intel i915
838 License:        MIT
839 Group:          X11/Libraries
840 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
841 Requires:       xorg-xserver-server >= %{xserver_ver}
842 Requires:       zlib >= %{zlib_ver}
843 Obsoletes:      Mesa-dri-driver-intel-i830
844 Obsoletes:      X11-driver-i810-dri < 1:7.0.0
845
846 %description dri-driver-intel-i915
847 X.org DRI driver for Intel i915 card family (830, 845, 852/855, 865,
848 915, 945, G33, Q33, Q35, Pineview).
849
850 %description dri-driver-intel-i915 -l pl.UTF-8
851 Sterownik X.org DRI dla rodziny kart Intel i915 (830, 845, 852/855,
852 865, 915, 945, G33, Q33, Q35, Pineview).
853
854 %package dri-driver-intel-i965
855 Summary:        X.org DRI driver for Intel i965 card family
856 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart Intel i965
857 License:        MIT
858 Group:          X11/Libraries
859 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
860 Requires:       xorg-xserver-server >= %{xserver_ver}
861 Requires:       zlib >= %{zlib_ver}
862 Obsoletes:      Mesa-dri-driver-intel-i830
863 Obsoletes:      X11-driver-i810-dri < 1:7.0.0
864
865 %description dri-driver-intel-i965
866 X.org (non-Gallium) DRI driver for Intel i965 card family (946GZ,
867 965G, 965Q, 965GM, 965GME, GM45, G41, B43, Q45/Q43, G45/G43, Ironlake,
868 Sandybridge, Ivybridge, Haswell, Ray Trail, Broadwell, Cherrytrail,
869 Braswell, Cherryview, Skylake, Broxton, Kabylake, Geminilake);
870
871 %description dri-driver-intel-i965 -l pl.UTF-8
872 Sterownik X.org DRI (nie Gallium) dla rodziny kart Intel i965 (946GZ,
873 965G, 965Q, 965GM, 965GME, GM45, G41, B43, Q45/Q43, G45/G43, Ironlake,
874 Sandybridge, Ivybridge, Haswell, Ray Trail, Broadwell, Cherrytrail,
875 Braswell, Cherryview, Skylake, Broxton, Kabylake, Geminilake);
876
877 %package dri-driver-nouveau
878 Summary:        X.org DRI driver for NVIDIA card family
879 Summary(pl.UTF-8):      Sterownik X.org DRI dla rodziny kart NVIDIA
880 License:        MIT
881 Group:          X11/Libraries
882 Requires:       xorg-driver-video-nouveau
883 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
884 Requires:       xorg-xserver-server >= %{xserver_ver}
885 Requires:       zlib >= %{zlib_ver}
886
887 %description dri-driver-nouveau
888 X.org DRI drivers for NVIDIA card family.
889
890 %description dri-driver-nouveau -l pl.UTF-8
891 Sterowniki X.org DRI dla rodziny kart NVIDIA.
892
893 %package dri-driver-swrast
894 Summary:        X.org DRI software rasterizer driver
895 Summary(pl.UTF-8):      Sterownik X.org DRI obsługujący rysowanie programowe
896 License:        MIT
897 Group:          X11/Libraries
898 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
899 Requires:       xorg-xserver-server >= %{xserver_ver}
900 Requires:       zlib >= %{zlib_ver}
901
902 %description dri-driver-swrast
903 X.org DRI software rasterizer driver.
904
905 %description dri-driver-swrast -l pl.UTF-8
906 Sterownik X.org DRI obsługujący rysowanie programowe.
907
908 %package dri-driver-vc4
909 Summary:        X.org DRI driver for Broadcom VC4 chips
910 Summary(pl.UTF-8):      Sterownik X.org DRI dla układów Broadcom VC4
911 License:        MIT
912 Group:          X11/Libraries
913 Requires:       xorg-driver-video-modesetting
914 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
915 Requires:       xorg-xserver-server >= %{xserver_ver}
916 Requires:       zlib >= %{zlib_ver}
917
918 %description dri-driver-vc4
919 X.org DRI driver for Broadcom VC4 chips.
920
921 %description dri-driver-vc4 -l pl.UTF-8
922 Sterownik X.org DRI dla układów Broadcom VC4.
923
924 %package dri-driver-virgl
925 Summary:        X.org DRI driver for QEMU VirGL
926 Summary(pl.UTF-8):      Sterownik X.org DRI dla QEMU VirGL
927 License:        MIT
928 Group:          X11/Libraries
929 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
930 Requires:       xorg-xserver-server >= %{xserver_ver}
931 Requires:       zlib >= %{zlib_ver}
932
933 %description dri-driver-virgl
934 X.org DRI driver for QEMU VirGL.
935
936 %description dri-driver-virgl -l pl.UTF-8
937 Sterownik X.org DRI dla QEMU VirGL.
938
939 %package dri-driver-vmwgfx
940 Summary:        X.org DRI driver for VMware
941 Summary(pl.UTF-8):      Sterownik X.org DRI dla VMware
942 License:        MIT
943 Group:          X11/Libraries
944 Requires:       xorg-driver-video-vmware
945 Requires:       xorg-xserver-libglx(glapi) = %{glapi_ver}
946 Requires:       xorg-xserver-server >= %{xserver_ver}
947 Requires:       zlib >= %{zlib_ver}
948
949 %description dri-driver-vmwgfx
950 X.org DRI driver for VMWare.
951
952 %description dri-driver-vmwgfx -l pl.UTF-8
953 Sterownik X.org DRI dla VMware.
954
955 %package pipe-driver-i915
956 Summary:        i915 driver for Mesa Gallium dynamic pipe loader
957 Summary(pl.UTF-8):      Sterownik i915 dla dynamicznego systemu potoków szkieletu Mesa Gallium
958 Group:          Libraries
959 Requires:       zlib >= %{zlib_ver}
960 Obsoletes:      Mesa-gbm-driver-i915
961 Obsoletes:      Mesa-opencl-driver-i915
962
963 %description pipe-driver-i915
964 i915 driver for Mesa Gallium dynamic pipe loader. It supports Intel
965 915/945/G33/Q33/Q35/Pineview chips.
966
967 %description pipe-driver-i915 -l pl.UTF-8
968 Sterownik i915 dla dynamicznego systemu potoków szkieletu Mesa
969 Gallium. Obsługuje układy Intela z serii 915/945/G33/Q33/Q35/Pineview.
970
971 %package pipe-driver-msm
972 Summary:        msm (freedreno) driver for Mesa Gallium dynamic pipe loader
973 Summary(pl.UTF-8):      Sterownik msm (freedreno) dla dynamicznego systemu potoków szkieletu Mesa Gallium
974 Group:          Libraries
975 Requires:       zlib >= %{zlib_ver}
976
977 %description pipe-driver-msm
978 msm (freedreno) driver for Mesa Gallium dynamic pipe loader. It
979 supports Adreno chips.
980
981 %description pipe-driver-msm -l pl.UTF-8
982 Sterownik msm (freedreno) dla dynamicznego systemu potoków szkieletu
983 Mesa Gallium. Obsługuje układy Adreno.
984
985 %package pipe-driver-nouveau
986 Summary:        nouveau driver for Mesa Gallium dynamic pipe loader
987 Summary(pl.UTF-8):      Sterownik nouveau dla dynamicznego systemu potoków szkieletu Mesa Gallium
988 Group:          Libraries
989 Requires:       zlib >= %{zlib_ver}
990 Obsoletes:      Mesa-gbm-driver-nouveau
991 Obsoletes:      Mesa-opencl-driver-nouveau
992
993 %description pipe-driver-nouveau
994 nouveau driver for Mesa Gallium dynamic pipe loader. It supports
995 NVidia adapters.
996
997 %description pipe-driver-nouveau -l pl.UTF-8
998 Sterownik nouveau dla dynamicznego systemu potoków szkieletu Mesa
999 Gallium. Obsługuje karty graficzne firmy NVidia.
1000
1001 %package pipe-driver-r300
1002 Summary:        r300 driver for Mesa Gallium dynamic pipe loader
1003 Summary(pl.UTF-8):      Sterownik r300 dla dynamicznego systemu potoków szkieletu Mesa Gallium
1004 Group:          Libraries
1005 Requires:       zlib >= %{zlib_ver}
1006 Obsoletes:      Mesa-gbm-driver-r300
1007 Obsoletes:      Mesa-opencl-driver-r300
1008
1009 %description pipe-driver-r300
1010 r300 driver for Mesa Gallium dynamic pipe loader. It supports ATI
1011 Radeon adapters based on R300/R400/RS690/R500 chips.
1012
1013 %description pipe-driver-r300 -l pl.UTF-8
1014 Sterownik r300 dla dynamicznego systemu potoków szkieletu Mesa
1015 Gallium. Obsługuje karty graficzne ATI Radeon oparte na układach
1016 R300/R400/RS690/R500.
1017
1018 %package pipe-driver-r600
1019 Summary:        r600 driver for Mesa Gallium dynamic pipe loader
1020 Summary(pl.UTF-8):      Sterownik r600 dla dynamicznego systemu potoków szkieletu Mesa Gallium
1021 Group:          Libraries
1022 Requires:       zlib >= %{zlib_ver}
1023 Obsoletes:      Mesa-gbm-driver-r600
1024 Obsoletes:      Mesa-libllvmradeon
1025 Obsoletes:      Mesa-opencl-driver-r600
1026
1027 %description pipe-driver-r600
1028 r600 driver for Mesa Gallium dynamic pipe loader. It supports ATI
1029 Radeon adapters based on R600/R700 chips.
1030
1031 %description pipe-driver-r600 -l pl.UTF-8
1032 Sterownik r600 dla dynamicznego systemu potoków szkieletu Mesa
1033 Gallium. Obsługuje karty graficzne ATI Radeon oparte na układach
1034 R600/R700.
1035
1036 %package pipe-driver-radeonsi
1037 Summary:        radeonsi driver for Mesa Gallium dynamic pipe loader
1038 Summary(pl.UTF-8):      Sterownik radeonsi dla dynamicznego systemu potoków szkieletu Mesa Gallium
1039 Group:          Libraries
1040 Requires:       zlib >= %{zlib_ver}
1041 Obsoletes:      Mesa-gbm-driver-radeonsi
1042 Obsoletes:      Mesa-libllvmradeon
1043 Obsoletes:      Mesa-opencl-driver-radeonsi
1044
1045 %description pipe-driver-radeonsi
1046 radeonsi driver for Mesa Gallium dynamic pipe loader. It supports ATI
1047 Radeon adapters based on Southern Islands chips.
1048
1049 %description pipe-driver-radeonsi -l pl.UTF-8
1050 Sterownik radeonsi dla dynamicznego systemu potoków szkieletu Mesa
1051 Gallium. Obsługuje karty graficzne ATI Radeon oparte na układach
1052 Southern Islands.
1053
1054 %package pipe-driver-swrast
1055 Summary:        Software (swrast) driver for Mesa Gallium dynamic pipe loader
1056 Summary(pl.UTF-8):      Sterownik programowy (swrast) dla dynamicznego systemu potoków szkieletu Mesa Gallium
1057 Group:          Libraries
1058 Requires:       zlib >= %{zlib_ver}
1059 Obsoletes:      Mesa-gbm-driver-swrast
1060 Obsoletes:      Mesa-opencl-driver-swrast
1061
1062 %description pipe-driver-swrast
1063 Software (swrast) driver for Mesa Gallium dynamic pipe loader.
1064
1065 %description pipe-driver-swrast -l pl.UTF-8
1066 Sterownik programowy (swrast) dla dynamicznego systemu potoków
1067 szkieletu Mesa Gallium.
1068
1069 %package pipe-driver-vmwgfx
1070 Summary:        vmwgfx driver for Mesa Gallium dynamic pipe loader
1071 Summary(pl.UTF-8):      Sterownik vmwgfx dla dynamicznego systemu potoków szkieletu Mesa Gallium
1072 Group:          Libraries
1073 Requires:       zlib >= %{zlib_ver}
1074 Obsoletes:      Mesa-gbm-driver-vmwgfx
1075 Obsoletes:      Mesa-opencl-driver-vmwgfx
1076
1077 %description pipe-driver-vmwgfx
1078 vmwgfx driver for Mesa Gallium dynamic pipe loader. It supports VMware
1079 virtual video adapter.
1080
1081 %description pipe-driver-vmwgfx -l pl.UTF-8
1082 Sterownik vmwgfx dla dynamicznego systemu potoków szkieletu Mesa
1083 Gallium. Obsługuje wirtualną kartę graficzną VMware.
1084
1085 %package swr
1086 Summary:        OpenSWR software rasterizer modules for Mesa
1087 Summary(pl.UTF-8):      Moduły programowego rasteryzera OpenSWR dla Mesy
1088 Group:          Libraries
1089 Requires:       cpuinfo(avx)
1090 Requires:       zlib >= %{zlib_ver}
1091
1092 %description swr
1093 OpenSWR software rasterizer modules for Mesa, utilizing x86 AVX or
1094 VX2 instruction sets. They can be loaded by swrast pipe driver or
1095 OSMesa library.
1096
1097 %description swr -l pl.UTF-8
1098 Moduły programowego rasteryzera OpenSWR dla Mesy, wykorzystujące
1099 zestawy instrukcji x86 AVX lub AVX2. Mogą być wczytywane przez
1100 sterownik potoków swrast lub bibliotekę OSMesa.
1101
1102 %package d3d
1103 Summary:        Nine Direct3D9 driver (for Wine)
1104 Summary(pl.UTF-8):      Sterownik Direct3D9 Nine (dla Wine)
1105 Group:          Libraries
1106 Requires:       libdrm >= %{libdrm_ver}
1107 Requires:       zlib >= %{zlib_ver}
1108
1109 %description d3d
1110 Nine Direct3D9 driver (for Wine).
1111
1112 %description d3d -l pl.UTF-8
1113 Sterownik Direct3D9 Nine (dla Wine).
1114
1115 %package d3d-devel
1116 Summary:        Nine Direct3D9 driver API
1117 Summary(pl.UTF-8):      API sterownika Direct3D9 Nine
1118 Group:          Development/Libraries
1119 Requires:       libdrm-devel >= %{libdrm_ver}
1120
1121 %description d3d-devel
1122 Nine Direct3D9 driver API.
1123
1124 %description d3d-devel -l pl.UTF-8
1125 API sterownika Direct3D9 Nine.
1126
1127 %package -n libvdpau-driver-mesa-nouveau
1128 Summary:        Mesa nouveau driver for the vdpau API
1129 Summary(pl.UTF-8):      Sterownik Mesa nouveau dla API vdpau
1130 License:        MIT
1131 Group:          X11/Libraries
1132 Requires:       libdrm >= %{libdrm_ver}
1133 Requires:       libvdpau >= 1.1
1134 Requires:       zlib >= %{zlib_ver}
1135 Conflicts:      libvdpau-driver-mesa
1136
1137 %description -n libvdpau-driver-mesa-nouveau
1138 Mesa nouveau driver for the vdpau API. It supports NVidia adapters
1139 (NV40-NV96, NVa0).
1140
1141 %description -n libvdpau-driver-mesa-nouveau -l pl.UTF-8
1142 Sterownik Mesa nouveau dla API vdpau. Obsługuje karty NVidia
1143 (NV40-NV96, NVa0).
1144
1145 %package -n libvdpau-driver-mesa-r300
1146 Summary:        Mesa r300 driver for the vdpau API
1147 Summary(pl.UTF-8):      Sterownik Mesa r300 dla API vdpau
1148 License:        MIT
1149 Group:          X11/Libraries
1150 Requires:       libdrm >= %{libdrm_ver}
1151 Requires:       libvdpau >= 1.1
1152 Requires:       zlib >= %{zlib_ver}
1153 Conflicts:      libvdpau-driver-mesa
1154
1155 %description -n libvdpau-driver-mesa-r300
1156 Mesa r300 driver for the vdpau API. It supports ATI Radeon adapters
1157 based on R300 chips.
1158
1159 %description -n libvdpau-driver-mesa-r300 -l pl.UTF-8
1160 Sterownik Mesa r300 dla API vdpau. Obsługuje karty ATI Radeon oparte
1161 na układach R300.
1162
1163 %package -n libvdpau-driver-mesa-r600
1164 Summary:        Mesa r600 driver for the vdpau API
1165 Summary(pl.UTF-8):      Sterownik Mesa r600 dla API vdpau
1166 License:        MIT
1167 Group:          X11/Libraries
1168 Requires:       libdrm >= %{libdrm_ver}
1169 Requires:       libvdpau >= 1.1
1170 Requires:       zlib >= %{zlib_ver}
1171 Conflicts:      libvdpau-driver-mesa
1172
1173 %description -n libvdpau-driver-mesa-r600
1174 Mesa r600 driver for the vdpau API. It supports ATI Radeon adapters
1175 based on R600/R700 chips.
1176
1177 %description -n libvdpau-driver-mesa-r600 -l pl.UTF-8
1178 Sterownik Mesa r600 dla API vdpau. Obsługuje karty ATI Radeon oparte
1179 na układach R600/R700.
1180
1181 %package -n libvdpau-driver-mesa-radeonsi
1182 Summary:        Mesa radeonsi driver for the vdpau API
1183 Summary(pl.UTF-8):      Sterownik Mesa radeonsi dla API vdpau
1184 License:        MIT
1185 Group:          X11/Libraries
1186 Requires:       libdrm >= %{libdrm_ver}
1187 Requires:       libvdpau >= 1.1
1188 Requires:       zlib >= %{zlib_ver}
1189 Conflicts:      libvdpau-driver-mesa
1190 Obsoletes:      Mesa-libllvmradeon
1191
1192 %description -n libvdpau-driver-mesa-radeonsi
1193 Mesa radeonsi driver for the vdpau API. It supports ATI Radeon
1194 adapters based on Southern Islands chips.
1195
1196 %description -n libvdpau-driver-mesa-radeonsi -l pl.UTF-8
1197 Sterownik Mesa radeonsi dla API vdpau. Obsługuje karty ATI Radeon
1198 oparte na układach Southern Islands.
1199
1200 %package -n omxil-mesa
1201 Summary:        Mesa driver for Bellagio OpenMAX IL API
1202 Summary(pl.UTF-8):      Sterownik Mesa nouveau dla API Bellagio OpenMAX IL
1203 License:        MIT
1204 Group:          X11/Libraries
1205 Requires:       libdrm >= %{libdrm_ver}
1206 Requires:       libxcb >= 1.8
1207 Requires:       libomxil-bellagio
1208 Requires:       zlib >= %{zlib_ver}
1209 Obsoletes:      omxil-mesa-nouveau
1210 Obsoletes:      omxil-mesa-r600
1211 Obsoletes:      omxil-mesa-radeonsi
1212
1213 %description -n omxil-mesa
1214 Mesa driver for Bellagio OpenMAX IL API.
1215
1216 %description -n omxil-mesa -l pl.UTF-8
1217 Sterownik Mesa dla API Bellagio OpenMAX IL.
1218
1219 %package vulkan-icd-intel
1220 Summary:        Mesa Vulkan driver for Intel GPUs
1221 Summary(pl.UTF-8):      Sterownik Vulkan dla GPU firmy Intel
1222 License:        MIT
1223 Group:          Libraries
1224 Requires:       libdrm >= %{libdrm_ver}
1225 Requires:       zlib >= %{zlib_ver}
1226 Suggests:       vulkan(loader)
1227 Provides:       vulkan(icd) = 1.0.3
1228
1229 %description vulkan-icd-intel
1230 Mesa Vulkan driver for Intel GPUs.
1231
1232 %description vulkan-icd-intel -l pl.UTF-8
1233 Sterownik Vulkan dla GPU Intela.
1234
1235 %package vulkan-icd-intel-devel
1236 Summary:        Header files for Mesa Intel GPU Vulkan driver
1237 Summary(pl.UTF-8):      Pliki nagłówkowe sterownika Vulkan dla GPU Intela
1238 License:        MIT
1239 Group:          Development/Libraries
1240 Requires:       %{name}-vulkan-icd-intel = %{version}-%{release}
1241
1242 %description vulkan-icd-intel-devel
1243 eader files for Mesa Intel GPU Vulkan driver.
1244
1245 %description vulkan-icd-intel-devel -l pl.UTF-8
1246 Pliki nagłówkowe sterownika Vulkan dla GPU Intel.
1247
1248 %package vulkan-icd-radeon
1249 Summary:        radv - experimental Mesa Vulkan driver for AMD Radeon GPUs
1250 Summary(pl.UTF-8):      radv - eksperymentalny sterownik Vulkan dla GPU firmy AMD
1251 License:        MIT
1252 Group:          Libraries
1253 Requires:       zlib >= %{zlib_ver}
1254 Suggests:       vulkan(loader)
1255 Provides:       vulkan(icd) = 1.0.3
1256
1257 %description vulkan-icd-radeon
1258 radv - experimental Mesa Vulkan driver for AMD Radeon GPUs.
1259
1260 %description vulkan-icd-radeon -l pl.UTF-8
1261 radv - eksperymentalny sterownik Vulkan dla GPU firmy AMD.
1262
1263 %prep
1264 %setup -q -n mesa-%{version}
1265 %patch0 -p1
1266
1267 %build
1268 %{__libtoolize}
1269 %{__aclocal} -I m4
1270 %{__autoconf}
1271 %{__automake}
1272
1273 dri_drivers="nouveau r200 radeon swrast \
1274 %ifarch %{ix86} %{x8664} x32
1275 i965 %{!?with_gallium_i915:i915} \
1276 %endif
1277 "
1278
1279 dri_drivers=$(echo $dri_drivers | xargs | tr ' ' ',')
1280
1281 gallium_drivers="svga swrast virgl \
1282 %ifarch %{ix86} %{x8664} x32
1283 swr %{?with_gallium_i915:i915} \
1284 %endif
1285 %if %{with gallium_radeon}
1286 r300 r600 radeonsi \
1287 %endif
1288 %if %{with gallium_nouveau}
1289 nouveau
1290 %endif
1291 %ifarch %{arm}
1292 etnaviv \
1293 freedreno \
1294 imx \
1295 vc4 \
1296 %endif
1297 "
1298
1299 gallium_drivers=$(echo $gallium_drivers | xargs | tr ' ' ',')
1300
1301 vulkan_drivers="%{?with_radv:radeon} \
1302 %ifarch %{ix86} %{x8664} x32
1303 intel \
1304 %endif
1305 "
1306
1307 vulkan_drivers=$(echo $vulkan_drivers | xargs | tr ' ' ',')
1308
1309 %configure \
1310         --disable-silent-rules \
1311         %{__enable gbm} \
1312         --enable-glx-tls \
1313         %{?with_glvnd:--enable-libglvnd} \
1314         --enable-osmesa \
1315         --enable-selinux \
1316         --enable-shared \
1317         --enable-shared-glapi \
1318         %{?with_static_libs:--enable-static} \
1319         %{?with_texture_float:--enable-texture-float} \
1320 %if %{with egl}
1321         --enable-egl \
1322         --enable-gles1 \
1323         --enable-gles2 \
1324         --with-platforms=x11%{?with_gbm:,drm}%{?with_wayland:,wayland} \
1325 %endif
1326 %if %{with gallium}
1327         %{?with_hud_extra:--enable-gallium-extra-hud} \
1328         --enable-llvm \
1329         %{__enable_disable shared_llvm llvm-shared-libs} \
1330         %{__enable ocl_icd opencl-icd} \
1331         %{?with_lm_sensors:--enable-lmsensors} \
1332         %{?with_nine:--enable-nine} \
1333         %{__enable opencl} \
1334         %{__enable va} \
1335         --enable-vdpau \
1336         %{?with_omx:--enable-omx} \
1337         %{?with_xa:--enable-xa} \
1338         --enable-xvmc \
1339         --with-gallium-drivers=${gallium_drivers} \
1340 %else
1341         --without-gallium-drivers \
1342 %endif
1343         --with-dri-drivers=${dri_drivers} \
1344         --with-dri-driverdir=%{_libdir}/xorg/modules/dri \
1345         --with-vulkan-drivers=${vulkan_drivers} \
1346         --with-vulkan-icddir=/usr/share/vulkan/icd.d \
1347         --with-sha1=libnettle \
1348         --with-va-libdir=%{_libdir}/libva/dri
1349
1350 %{__make}
1351
1352 %{?with_tests:%{__make} check}
1353
1354 %install
1355 rm -rf $RPM_BUILD_ROOT
1356
1357 %{__make} install \
1358         DESTDIR=$RPM_BUILD_ROOT
1359
1360 # dlopened by soname
1361 %{?with_gallium:%{__rm} $RPM_BUILD_ROOT%{_libdir}/libXvMC*.so}
1362 %{?with_gallium:%{__rm} $RPM_BUILD_ROOT%{_libdir}/libXvMC*.so.1.0}
1363 # dlopened by soname or .so link
1364 %{?with_gallium:%{__rm} $RPM_BUILD_ROOT%{_libdir}/vdpau/libvdpau_*.so.1.0}
1365 # not used externally
1366 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libglapi.so
1367 # dlopened
1368 %{?with_omx:%{__rm} $RPM_BUILD_ROOT%{_libdir}/bellagio/libomx_*.la}
1369 %{?with_nine:%{__rm} $RPM_BUILD_ROOT%{_libdir}/d3d/d3dadapter9.la}
1370 %{?with_gallium:%{__rm} $RPM_BUILD_ROOT%{_libdir}/gallium-pipe/pipe_*.la}
1371 # not defined by standards; and not needed, there is pkg-config support
1372 %{__rm} $RPM_BUILD_ROOT%{_libdir}/lib*.la
1373
1374 %if %{without glvnd}
1375 # remove "OS ABI: Linux 2.4.20" tag, so private copies (nvidia or fglrx),
1376 # set up via /etc/ld.so.conf.d/*.conf will be preferred over this
1377 strip -R .note.ABI-tag $RPM_BUILD_ROOT%{_libdir}/libGL.so.*.*
1378 %endif
1379
1380 %clean
1381 rm -rf $RPM_BUILD_ROOT
1382
1383 %post   libEGL -p /sbin/ldconfig
1384 %postun libEGL -p /sbin/ldconfig
1385
1386 %post   libGL -p /sbin/ldconfig
1387 %postun libGL -p /sbin/ldconfig
1388
1389 %post   libGLES -p /sbin/ldconfig
1390 %postun libGLES -p /sbin/ldconfig
1391
1392 %post   libOSMesa -p /sbin/ldconfig
1393 %postun libOSMesa -p /sbin/ldconfig
1394
1395 %post   libOpenCL -p /sbin/ldconfig
1396 %postun libOpenCL -p /sbin/ldconfig
1397
1398 %post   libOpenVG -p /sbin/ldconfig
1399 %postun libOpenVG -p /sbin/ldconfig
1400
1401 %post   libXvMC-nouveau -p /sbin/ldconfig
1402 %postun libXvMC-nouveau -p /sbin/ldconfig
1403 %post   libXvMC-r600 -p /sbin/ldconfig
1404 %postun libXvMC-r600 -p /sbin/ldconfig
1405
1406 %post   libgbm -p /sbin/ldconfig
1407 %postun libgbm -p /sbin/ldconfig
1408
1409 %post   libglapi -p /sbin/ldconfig
1410 %postun libglapi -p /sbin/ldconfig
1411
1412 %post   libwayland-egl -p /sbin/ldconfig
1413 %postun libwayland-egl -p /sbin/ldconfig
1414
1415 %post   libxatracker -p /sbin/ldconfig
1416 %postun libxatracker -p /sbin/ldconfig
1417
1418 %if %{with egl}
1419 %files libEGL
1420 %defattr(644,root,root,755)
1421 %attr(755,root,root) %{_libdir}/libEGL.so.*.*
1422 %attr(755,root,root) %ghost %{_libdir}/libEGL.so.1
1423
1424 %files libEGL-devel
1425 %defattr(644,root,root,755)
1426 %attr(755,root,root) %{_libdir}/libEGL.so
1427 %dir %{_includedir}/EGL
1428 %{_includedir}/EGL/egl.h
1429 %{_includedir}/EGL/eglext.h
1430 %{_includedir}/EGL/eglextchromium.h
1431 %{_includedir}/EGL/eglmesaext.h
1432 %{_includedir}/EGL/eglplatform.h
1433 %{_pkgconfigdir}/egl.pc
1434
1435 %if %{with static_libs}
1436 %files libEGL-static
1437 %defattr(644,root,root,755)
1438 %{_libdir}/libEGL.a
1439 %endif
1440 %endif
1441
1442 %files libGL
1443 %defattr(644,root,root,755)
1444 %doc docs/{*.html,README.UVD,patents.txt,relnotes/*.html}
1445 %if %{with glvnd}
1446 %attr(755,root,root) %{_libdir}/libGLX_mesa.so.*.*
1447 %attr(755,root,root) %ghost %{_libdir}/libGLX_mesa.so.0
1448 %attr(755,root,root) %{_libdir}/libGLX_mesa.so
1449 %else
1450 %attr(755,root,root) %{_libdir}/libGL.so.*.*
1451 %attr(755,root,root) %ghost %{_libdir}/libGL.so.1
1452 # symlink for binary apps which fail to conform Linux OpenGL ABI
1453 # (and dlopen libGL.so instead of libGL.so.1; the same does Mesa libEGL)
1454 %attr(755,root,root) %{_libdir}/libGL.so
1455 %endif
1456 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/drirc
1457
1458 %files libGL-devel
1459 %defattr(644,root,root,755)
1460 %doc docs/specs/*
1461 %dir %{_includedir}/GL
1462 %{_includedir}/GL/gl.h
1463 %{_includedir}/GL/glcorearb.h
1464 %{_includedir}/GL/glext.h
1465 %{_includedir}/GL/gl_mangle.h
1466 %{_includedir}/GL/glx.h
1467 %{_includedir}/GL/glxext.h
1468 %{_includedir}/GL/glx_mangle.h
1469 %dir %{_includedir}/GL/internal
1470 %{_includedir}/GL/internal/dri_interface.h
1471 %{_pkgconfigdir}/dri.pc
1472 %{_pkgconfigdir}/gl.pc
1473
1474 %if %{with static_libs}
1475 %files libGL-static
1476 %defattr(644,root,root,755)
1477 %{_libdir}/libGL.a
1478 %endif
1479
1480 %files libGLES
1481 %defattr(644,root,root,755)
1482 %attr(755,root,root) %{_libdir}/libGLESv1_CM.so.*.*.*
1483 %attr(755,root,root) %ghost %{_libdir}/libGLESv1_CM.so.1
1484 %attr(755,root,root) %{_libdir}/libGLESv2.so.*.*
1485 %attr(755,root,root) %ghost %{_libdir}/libGLESv2.so.2
1486
1487 %files libGLES-devel
1488 %defattr(644,root,root,755)
1489 %attr(755,root,root) %{_libdir}/libGLESv1_CM.so
1490 %attr(755,root,root) %{_libdir}/libGLESv2.so
1491 %{_includedir}/GLES
1492 %{_includedir}/GLES2
1493 %{_includedir}/GLES3
1494 %{_pkgconfigdir}/glesv1_cm.pc
1495 %{_pkgconfigdir}/glesv2.pc
1496
1497 %files libOSMesa
1498 %defattr(644,root,root,755)
1499 %attr(755,root,root) %{_libdir}/libOSMesa.so.*.*
1500 %attr(755,root,root) %ghost %{_libdir}/libOSMesa.so.8
1501
1502 %files libOSMesa-devel
1503 %defattr(644,root,root,755)
1504 %attr(755,root,root) %{_libdir}/libOSMesa.so
1505 %{_includedir}/GL/osmesa.h
1506 %{_pkgconfigdir}/osmesa.pc
1507
1508 %if %{with static_libs}
1509 %files libOSMesa-static
1510 %defattr(644,root,root,755)
1511 %{_libdir}/libOSMesa.a
1512 %endif
1513
1514 %if %{with opencl}
1515 %if %{with ocl_icd}
1516 %files OpenCL-icd
1517 %defattr(644,root,root,755)
1518 /etc/OpenCL/vendors/mesa.icd
1519 %attr(755,root,root) %{_libdir}/libMesaOpenCL.so
1520 %attr(755,root,root) %{_libdir}/libMesaOpenCL.so.*.*.*
1521 %attr(755,root,root) %ghost %{_libdir}/libMesaOpenCL.so.1
1522 # currently only OpenCL uses dynamic pipe loader
1523 %dir %{_libdir}/gallium-pipe
1524 %else
1525 %files libOpenCL
1526 %defattr(644,root,root,755)
1527 %attr(755,root,root) %{_libdir}/libOpenCL.so.*.*.*
1528 %attr(755,root,root) %ghost %{_libdir}/libOpenCL.so.1
1529 # currently only OpenCL uses dynamic pipe loader
1530 %dir %{_libdir}/gallium-pipe
1531
1532 %files libOpenCL-devel
1533 %defattr(644,root,root,755)
1534 %attr(755,root,root) %{_libdir}/libOpenCL.so
1535 %{_includedir}/CL
1536 %endif
1537 %endif
1538
1539 %if %{with egl} && %{with openvg} && %{with gallium}
1540 %files libOpenVG
1541 %defattr(644,root,root,755)
1542 %attr(755,root,root) %{_libdir}/libOpenVG.so.*.*.*
1543 %attr(755,root,root) %ghost %{_libdir}/libOpenVG.so.1
1544
1545 %files libOpenVG-devel
1546 %defattr(644,root,root,755)
1547 %attr(755,root,root) %{_libdir}/libOpenVG.so
1548 %{_includedir}/VG
1549 %{_pkgconfigdir}/vg.pc
1550 %endif
1551
1552 %if %{with gallium}
1553 %if %{with gallium_nouveau}
1554 %files libXvMC-nouveau
1555 %defattr(644,root,root,755)
1556 %attr(755,root,root) %{_libdir}/libXvMCnouveau.so.1.0.0
1557 %attr(755,root,root) %ghost %{_libdir}/libXvMCnouveau.so.1
1558 %endif
1559
1560 %if %{with gallium_radeon}
1561 %files libXvMC-r600
1562 %defattr(644,root,root,755)
1563 %attr(755,root,root) %{_libdir}/libXvMCr600.so.1.0.0
1564 %attr(755,root,root) %ghost %{_libdir}/libXvMCr600.so.1
1565 %endif
1566
1567 %if %{with va}
1568 %files -n libva-driver-gallium
1569 %defattr(644,root,root,755)
1570
1571 %if %{with gallium_radeon}
1572 %files -n libva-driver-r600
1573 %defattr(644,root,root,755)
1574 %attr(755,root,root) %{_libdir}/libva/dri/r600_drv_video.so
1575
1576 %files -n libva-driver-radeonsi
1577 %defattr(644,root,root,755)
1578 %attr(755,root,root) %{_libdir}/libva/dri/radeonsi_drv_video.so
1579 %endif
1580
1581 %if %{with gallium_nouveau}
1582 %files -n libva-driver-nouveau
1583 %defattr(644,root,root,755)
1584 %attr(755,root,root) %{_libdir}/libva/dri/nouveau_drv_video.so
1585 %endif
1586 %endif
1587 %endif
1588
1589 %if %{with gbm}
1590 %files libgbm
1591 %defattr(644,root,root,755)
1592 %attr(755,root,root) %{_libdir}/libgbm.so.*.*
1593 %attr(755,root,root) %ghost %{_libdir}/libgbm.so.1
1594
1595 %files libgbm-devel
1596 %defattr(644,root,root,755)
1597 %attr(755,root,root) %{_libdir}/libgbm.so
1598 %{_includedir}/gbm.h
1599 %{_pkgconfigdir}/gbm.pc
1600 %endif
1601
1602 %files libglapi
1603 %defattr(644,root,root,755)
1604 %attr(755,root,root) %{_libdir}/libglapi.so.*.*
1605 %attr(755,root,root) %ghost %{_libdir}/libglapi.so.0
1606 # libglapi-devel? nothing seems to need it atm.
1607 #%attr(755,root,root) %{_libdir}/libglapi.so
1608
1609 %if %{with wayland}
1610 %files libwayland-egl
1611 %defattr(644,root,root,755)
1612 %attr(755,root,root) %{_libdir}/libwayland-egl.so.*.*
1613 %attr(755,root,root) %ghost %{_libdir}/libwayland-egl.so.1
1614
1615 %files libwayland-egl-devel
1616 %defattr(644,root,root,755)
1617 %attr(755,root,root) %{_libdir}/libwayland-egl.so
1618 %{_pkgconfigdir}/wayland-egl.pc
1619 %endif
1620
1621 %if %{with xa}
1622 %files libxatracker
1623 %defattr(644,root,root,755)
1624 %attr(755,root,root) %{_libdir}/libxatracker.so.*.*
1625 %attr(755,root,root) %ghost %{_libdir}/libxatracker.so.2
1626
1627 %files libxatracker-devel
1628 %defattr(644,root,root,755)
1629 %attr(755,root,root) %{_libdir}/libxatracker.so
1630 %{_includedir}/xa_composite.h
1631 %{_includedir}/xa_context.h
1632 %{_includedir}/xa_tracker.h
1633 %{_pkgconfigdir}/xatracker.pc
1634 %endif
1635
1636 %if %{with egl}
1637 %files khrplatform-devel
1638 %defattr(644,root,root,755)
1639 %dir %{_includedir}/KHR
1640 %{_includedir}/KHR/khrplatform.h
1641 %endif
1642
1643 %files dri-driver-ati-radeon-R100
1644 %defattr(644,root,root,755)
1645 %attr(755,root,root) %{_libdir}/xorg/modules/dri/radeon_dri.so
1646
1647 %files dri-driver-ati-radeon-R200
1648 %defattr(644,root,root,755)
1649 %attr(755,root,root) %{_libdir}/xorg/modules/dri/r200_dri.so
1650
1651 %if %{with gallium}
1652 %if %{with gallium_radeon}
1653 %files dri-driver-ati-radeon-R300
1654 %defattr(644,root,root,755)
1655 %attr(755,root,root) %{_libdir}/xorg/modules/dri/r300_dri.so
1656
1657 %files dri-driver-ati-radeon-R600
1658 %defattr(644,root,root,755)
1659 %attr(755,root,root) %{_libdir}/xorg/modules/dri/r600_dri.so
1660
1661 %files dri-driver-ati-radeon-SI
1662 %defattr(644,root,root,755)
1663 %attr(755,root,root) %{_libdir}/xorg/modules/dri/radeonsi_dri.so
1664 %endif
1665 %endif
1666
1667 %files dri-driver-intel-i915
1668 %defattr(644,root,root,755)
1669 %attr(755,root,root) %{_libdir}/xorg/modules/dri/i915_dri.so
1670
1671 %files dri-driver-intel-i965
1672 %defattr(644,root,root,755)
1673 %attr(755,root,root) %{_libdir}/xorg/modules/dri/i965_dri.so
1674
1675 %files dri-driver-nouveau
1676 %defattr(644,root,root,755)
1677 %attr(755,root,root) %{_libdir}/xorg/modules/dri/nouveau_vieux_dri.so
1678 %if %{with gallium_nouveau}
1679 %attr(755,root,root) %{_libdir}/xorg/modules/dri/nouveau_dri.so
1680 %endif
1681
1682 %files dri-driver-swrast
1683 %defattr(644,root,root,755)
1684 %if %{with gallium}
1685 %attr(755,root,root) %{_libdir}/xorg/modules/dri/kms_swrast_dri.so
1686 %endif
1687 %attr(755,root,root) %{_libdir}/xorg/modules/dri/swrast_dri.so
1688
1689 %if %{with gallium}
1690 %ifarch %{arm}
1691 %files dri-driver-etnaviv
1692 %defattr(644,root,root,755)
1693 %attr(755,root,root) %{_libdir}/xorg/modules/dri/etnaviv_dri.so
1694 %attr(755,root,root) %{_libdir}/xorg/modules/dri/imx-drm_dri.so
1695
1696 %files dri-driver-freedreno
1697 %defattr(644,root,root,755)
1698 %attr(755,root,root) %{_libdir}/xorg/modules/dri/kgsl_dri.so
1699 %attr(755,root,root) %{_libdir}/xorg/modules/dri/msm_dri.so
1700
1701 %files dri-driver-vc4
1702 %defattr(644,root,root,755)
1703 %attr(755,root,root) %{_libdir}/xorg/modules/dri/vc4_dri.so
1704 %endif
1705
1706 %files dri-driver-virgl
1707 %defattr(644,root,root,755)
1708 %attr(755,root,root) %{_libdir}/xorg/modules/dri/virtio_gpu_dri.so
1709
1710 %files dri-driver-vmwgfx
1711 %defattr(644,root,root,755)
1712 %attr(755,root,root) %{_libdir}/xorg/modules/dri/vmwgfx_dri.so
1713 %endif
1714
1715 %if %{with gallium}
1716 %if %{with gallium_i915}
1717 %files pipe-driver-i915
1718 %defattr(644,root,root,755)
1719 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_i915.so
1720 %endif
1721
1722 %ifarch %{arm}
1723 %files pipe-driver-msm
1724 %defattr(644,root,root,755)
1725 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_msm.so
1726 %endif
1727
1728 %if %{with gallium_nouveau}
1729 %files pipe-driver-nouveau
1730 %defattr(644,root,root,755)
1731 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_nouveau.so
1732 %endif
1733
1734 %if %{with gallium_radeon}
1735 %files pipe-driver-r300
1736 %defattr(644,root,root,755)
1737 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_r300.so
1738
1739 %files pipe-driver-r600
1740 %defattr(644,root,root,755)
1741 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_r600.so
1742
1743 %files pipe-driver-radeonsi
1744 %defattr(644,root,root,755)
1745 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_radeonsi.so
1746 %endif
1747
1748 %files pipe-driver-swrast
1749 %defattr(644,root,root,755)
1750 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_swrast.so
1751
1752 %files pipe-driver-vmwgfx
1753 %defattr(644,root,root,755)
1754 %attr(755,root,root) %{_libdir}/gallium-pipe/pipe_vmwgfx.so
1755
1756 %ifarch %{ix86} %{x8664} x32
1757 %files swr
1758 %defattr(644,root,root,755)
1759 %attr(755,root,root) %{_libdir}/libswrAVX.so
1760 %attr(755,root,root) %{_libdir}/libswrAVX2.so
1761 %endif
1762 %endif
1763
1764 %if %{with nine}
1765 %files d3d
1766 %defattr(644,root,root,755)
1767 %dir %{_libdir}/d3d
1768 %attr(755,root,root) %{_libdir}/d3d/d3dadapter9.so*
1769
1770 %files d3d-devel
1771 %defattr(644,root,root,755)
1772 %{_includedir}/d3dadapter
1773 %{_pkgconfigdir}/d3d.pc
1774 %endif
1775
1776 %if %{with gallium}
1777 # ldconfig is not used in vdpau tree, so package all symlinks
1778 %if %{with gallium_nouveau}
1779 %files -n libvdpau-driver-mesa-nouveau
1780 %defattr(644,root,root,755)
1781 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so.1.0.0
1782 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so.1
1783 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_nouveau.so
1784 %endif
1785
1786 %if %{with gallium_radeon}
1787 %files -n libvdpau-driver-mesa-r300
1788 %defattr(644,root,root,755)
1789 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_r300.so.1.0.0
1790 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_r300.so.1
1791 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_r300.so
1792
1793 %files -n libvdpau-driver-mesa-r600
1794 %defattr(644,root,root,755)
1795 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so.1.0.0
1796 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so.1
1797 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_r600.so
1798
1799 %files -n libvdpau-driver-mesa-radeonsi
1800 %defattr(644,root,root,755)
1801 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so.1.0.0
1802 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so.1
1803 %attr(755,root,root) %{_libdir}/vdpau/libvdpau_radeonsi.so
1804 %endif
1805 %endif
1806
1807 %if %{with gallium} && %{with omx}
1808 %files -n omxil-mesa
1809 %defattr(644,root,root,755)
1810 %attr(755,root,root) %{_libdir}/bellagio/libomx_mesa.so
1811 %endif
1812
1813 %files vulkan-icd-intel
1814 %defattr(644,root,root,755)
1815 %attr(755,root,root) %{_libdir}/libvulkan_intel.so
1816 %{_datadir}/vulkan/icd.d/intel_icd.*.json
1817
1818 %files vulkan-icd-intel-devel
1819 %defattr(644,root,root,755)
1820 %{_includedir}/vulkan/vulkan_intel.h
1821
1822 %if %{with radv}
1823 %files vulkan-icd-radeon
1824 %defattr(644,root,root,755)
1825 %attr(755,root,root) %{_libdir}/libvulkan_radeon.so
1826 %{_datadir}/vulkan/icd.d/radeon_icd.*.json
1827 %endif
This page took 0.370011 seconds and 3 git commands to generate.