summaryrefslogtreecommitdiff
path: root/packaging/mesa.spec
blob: 634fa7ffed8bb460528c86642866248e5722abf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
Name:           mesa
Version:        22.3.5
Release:        0
License:        MIT and Apache-2.0 and SGI Free Software License B v2.0 and BSD-3-Clause
Summary:        System for rendering interactive 3-D graphics
Url:            http://www.mesa3d.org
Group:          Graphics & UI Framework/Hardware Adaptation
Source:         %{name}-%{version}.tar.gz
Source1001:     %{name}.manifest
Source1002:     99-GPU-Acceleration.rules

%define USE_LLVM 0

BuildRequires:  bison
BuildRequires:  flex
%if %{USE_LLVM} == 1
BuildRequires:  llvm
BuildRequires:  llvm-devel
BuildRequires:  llvm-static-devel
Requires:       llvm
%endif
BuildRequires:  pkgconfig
BuildRequires:  pkgconfig(expat)
BuildRequires:  pkgconfig(libdrm) >= 2.4.75
BuildRequires:  pkgconfig(libudev) > 150
BuildRequires:  pkgconfig(wayland-client)
BuildRequires:  pkgconfig(wayland-server)
BuildRequires:  pkgconfig(wayland-protocols)
BuildRequires:  pkgconfig(tpl-egl)
BuildRequires:  pkgconfig(libtbm)
BuildRequires:  pkgconfig(libtdm)
BuildRequires:  pkgconfig(zlib)
BuildRequires:  pkgconfig(dlog)
BuildRequires:  pkgconfig(libsystemd)
BuildRequires:  meson
BuildRequires:  python3
BuildRequires:  python3-mako
BuildRequires:  pkgconfig(ttrace)
%ifarch x86_64 %ix86
BuildRequires:  pkgconfig(libdrm_intel) >= 2.4.24
%endif

%if "%{_with_emulator}" == "1"
ExclusiveArch:
%endif

%define enable_driver() %{expand:%%{?!enable_%{1}: %%global enable_%{1} 1}}

%ifarch %ix86 x86_64
%define gallium_drivers "i915,swrast"
%define vulkan_drivers ""
%define dri_drivers ""
%else
%define USE_GBM 0
%define USE_VULKAN 1
%define VULKAN_DRIVER broadcom
%if %{USE_LLVM} == 1
%enable_driver llvm
%endif
%if %{USE_GBM} == 1
%enable_driver gbm
%endif
%if %{USE_VULKAN} == 1
%enable_driver vulkan
%endif
%define gallium_drivers "vc4,v3d,kmsro%{?!enable_llvm:,swrast}"
%define vulkan_drivers "%{?enable_vulkan:%{VULKAN_DRIVER}}"
%define dri_drivers "auto"
%endif


%description
Mesa is a 3-D graphics library with an API which is very similar to
that of OpenGL.* To the extent that Mesa utilizes the OpenGL command
syntax or state machine, it is being used with authorization from
Silicon Graphics, Inc.(SGI). However, the author does not possess an
OpenGL license from SGI, and makes no claim that Mesa is in any way a
compatible replacement for OpenGL or associated with SGI. Those who
want a licensed implementation of OpenGL should contact a licensed
vendor.

Please do not refer to the library as MesaGL (for legal reasons). It's
just Mesa or The Mesa 3-D graphics library.

* OpenGL is a trademark of Silicon Graphics Incorporated.

%prep
%setup -q -n %{name}-%{version}
cp %{SOURCE1001} .
cp %{SOURCE1002} .

%build
%{?asan:/usr/bin/gcc-unforce-options}
mkdir build

meson --prefix %{_hal_prefix} build/ \
        -Dc_link_args="-lttrace" \
        -Dcpp_link_args="-lttrace" \
        -Dlibdir=%{_hal_libdir} \
        -Dgallium-va=false \
        -Dgallium-vdpau=false \
        -Dgallium-xa=false \
        -Dglx=disabled \
        -Ddri3=false \
        -Dllvm=%{?enable_llvm:enabled}%{?!enable_llvm:disabled} \
        -Dgbm=%{?enable_gbm:enabled}%{?!enable_gbm:disabled} \
        -Dplatforms="tizen" \
        -Dgallium-drivers=%{gallium_drivers} \
        -Dvulkan-drivers=%{vulkan_drivers}


ninja -C build/

%install
DESTDIR=%{buildroot} ninja -C build/ install
mkdir -p %{buildroot}%{_hal_libdir}/driver
mkdir -p %{buildroot}%{_hal_libdir}/dri
mkdir -p %{buildroot}%{_hal_prefix}/share/vulkan/icd.d

cp -a %{buildroot}%{_hal_libdir}/libEGL* %{buildroot}%{_hal_libdir}/driver/
cp -a %{buildroot}%{_hal_libdir}/libGLES* %{buildroot}%{_hal_libdir}/driver/

mkdir -p %{buildroot}%{_hal_libdir}/udev/rules.d
cp 99-GPU-Acceleration.rules %{buildroot}%{_hal_libdir}/udev/rules.d

mkdir -p %{buildroot}%{_hal_prefix}/share/licenses/%{name}
cp COPYING %{buildroot}%{_hal_prefix}/share/licenses/%{name}/

%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig

%files
%define _unpackaged_files_terminate_build 0
%manifest %{name}.manifest
%defattr(-,root,root)
%{_hal_prefix}/share/licenses/%{name}/COPYING
%{_hal_libdir}/libglapi*
%{_hal_libdir}/driver/*
%{_hal_libdir}/dri/*
%if "%{USE_GBM}" == "1"
%{_hal_libdir}/libgbm*
%endif
%if "%{USE_VULKAN}" == "1"
%{_hal_libdir}/libvulkan_%{VULKAN_DRIVER}.so
%{_hal_prefix}/share/vulkan/icd.d/*
%endif
%{_hal_libdir}/udev/rules.d/99-GPU-Acceleration.rules