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