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