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