qi: Improve removal of previous (found) package names, enhance messages and report
[dragora.git] / recipes / xorg / mesa / recipe
blobad6323132605f10b24314fdd98a9670870fa7bda
1 # Build recipe for mesa.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017-2021 Matias Fonzo <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=mesa
22 version=20.3.2
23 release=2
25 # Define a category for the output of the package name
26 pkgcategory=xorg_mesa
28 tarname=${program}-${version}.tar.xz
30 # Remote source(s)
31 fetch=https://archive.mesa3d.org/$tarname
33 description="
34 Mesa is an OpenGL compatible 3-D graphics library.
36 The Mesa project began as an open-source implementation of the OpenGL
37 specification - a system for rendering interactive 3D graphics.
40 homepage=https://www.mesa3d.org/
41 license=MIT
43 # Source documentation
44 docs="VERSION"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # To increment compatibility with Musl (Thanks to "Alpine Linux")
54     patch -p1 < "${worktree}/patches/mesa/adjust-cache-deflate-buffer.patch"
55     patch -p1 < "${worktree}/patches/mesa/musl-fix-includes.patch"
57     # To provide a few xdemos (Thanks to BLFS!)
58     patch -p1 < "${worktree}/patches/mesa/mesa-20.3.2-add_xdemos-1.patch"
60     MESA_GIT_SHA1_OVERRIDE='53b2b224dc2de982c37915a0ad218e33365ff75e'
61     export MESA_GIT_SHA1_OVERRIDE
62     python3 bin/git_sha1_gen.py --output include/git_sha1.h
64     # Set sane permissions
65     chmod -R u+w,go-w,a+rX-s .
67     mkdir BUILD
68     cd BUILD
70     CPPFLAGS="$QICPPFLAGS -D_XOPEN_SOURCE=700" \
71     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
72     meson setup $configure_args \
73      --libdir /usr/lib${libSuffix} \
74      --buildtype=release \
75      --strip \
76      -Dplatforms=x11 \
77      -Ddri-drivers="i915,i965,r100,r200,nouveau" \
78      -Dgallium-drivers="nouveau,r300,r600,svga,radeonsi,swrast,virgl,iris,virgl" \
79      -Dglx=dri \
80      -Dosmesa=gallium \
81      -Dllvm=true \
82      -Dshared-llvm=enabled \
83      -Dgallium-xvmc=enabled \
84      -Dgallium-va=enabled \
85      -Dgallium-xa=enabled \
86      -Dgallium-vdpau=enabled \
87      -Dgles1=enabled \
88      -Dgles2=enabled \
89      -Dopengl=true \
90      -Dlmsensors=true \
91      -Dgallium-nine=false \
92      -Dvalgrind=false \
93      -Dlibunwind=false \
94      -Dzstd=false \
95      ..
97     ninja -j${jobs}
98     DESTDIR="$destdir" ninja -j${jobs} install
100     unset -v MESA_GIT_SHA1_OVERRIDE
101     cd ../
103     # Handle .new files via graft(1), if any
104     if test -d "${destdir}/etc"
105     then
106         touch "${destdir}/etc/.graft-config"
107     fi
109     # Compress info documents deleting index file for the package
110     if test -d "${destdir}/$infodir"
111     then
112         rm -f "${destdir}/${infodir}/dir"
113         lzip -9 "${destdir}/${infodir}"/*
114     fi
116     # Compress and link man pages (if needed)
117     if test -d "${destdir}/$mandir"
118     then
119         (
120             cd "${destdir}/$mandir"
121             find . -type f -exec lzip -9 {} +
122             find . -type l | while read -r file
123             do
124                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
125                 rm -- "$file"
126             done
127         )
128     fi
130 ##    # Copy documentation
131 ##    mkdir -p "${destdir}${docsdir}"
132 ##    cp -p $docs "${destdir}${docsdir}"/