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