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