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