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