recipes: xorg/mesa: explicit options for gles1, gles2
[dragora.git] / recipes / xorg / mesa / recipe
blob4a8c9a7cadf334d61b6ae2b29913446470b51a8f
1 # Build recipe for mesa.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017 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 program=mesa
19 version=17.3.1
20 release=1
22 tarname=${program}-${version}.tar.gz
24 # Remote source(s)
25 fetch=http://mesa.freedesktop.org/archive/$tarname
27 description="
28 Mesa is an OpenGL compatible 3-D graphics library.
30 The Mesa project began as an open-source implementation of the OpenGL
31 specification - a system for rendering interactive 3D graphics.
34 homepage=http://www.mesa3d.org/
35 license=MIT
37 # Source documentation
38 docs="VERSION"
39 docsdir="${docdir}/${program}-${version}"
41 build()
43     set -e
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     ./configure CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
50      $configure_args \
51      --libdir=/usr/lib${libSuffix} \
52      --infodir=$infodir \
53      --mandir=$mandir \
54      --docdir=$docsdir \
55      --disable-debug \
56      --disable-llvm \
57      --disable-gallium-llvm \
58      --enable-texture-float \
59      --enable-egl \
60      --enable-gles1 \
61      --enable-gles2 \
62      --enable-gbm \
63      --enable-shared-glapi \
64      --enable-glx-tls \
65      --enable-gallium-extra-hud \
66      --enable-dri \
67      --enable-dri3 \
68      --enable-nine \
69      --enable-osmesa \
70      --enable-xa \
71      --with-gallium-drivers="i915,nouveau,r600,swrast" \
72      --with-platforms="drm,x11" \
73      --with-dri-driverdir=/usr/lib${libSuffix}/xorg/modules/dri \
74      --build="$(cc -dumpmachine)"
76     make -j${jobs} V=1
77     make -j${jobs} DESTDIR="$destdir" install-strip
79     # Compress info documents deleting index file for the package
80     if test -d "${destdir}/$infodir"
81     then
82         rm -f "${destdir}/${infodir}/dir"
83         lzip -9 "${destdir}/${infodir}"/*
84     fi
86     # Compress and link man pages (if needed)
87     if test -d "${destdir}/$mandir"
88     then
89         (
90             cd "${destdir}/$mandir"
91             find . -type f -exec lzip -9 '{}' +
92             find . -type l | while read -r file
93             do
94                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
95                 rm -- "$file"
96             done
97         )
98     fi
100     # Copy documentation
101     mkdir -p "${destdir}${docsdir}"
102     cp -p $docs "${destdir}${docsdir}"