Revert upgrade of xf86-video-intel again to resolve build issues
[dragora.git] / recipes / xorg / driver / xf86-video-intel / recipe
blobb2c69d708d56952799fee64993cf3f7bf4ffb470
1 # Build recipe for xf86-video-intel.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017-2019 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=xorg-xf86-video-intel
19 pkgname=xf86-video-intel
20 version=20190927_c6cb1b19
21 release=1
23 # Set 'outdir' for a nice and well-organized output directory
24 outdir="${outdir}/${arch}/xorg/driver"
26 tarname=${program}-${version}.tar.lz
28 # Remote source(s)
29 #fetch=http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/$tarname
30 fetch="
31   http://rsync.dragora.org/current/sources/$tarname
32   http://mirror.cedia.org.ec/dragora/current/sources/$tarname
35 description="
36 Video driver for the Xorg X server supporting Intel chipsets.
38 This package is part of X11.
41 homepage=http://github.com/freedesktop/xorg-xf86-video-intel/
42 license="MIT X Consortium"
44 # Source documentation
45 docs="AUTHORS COPYING NEWS README"
46 docsdir="${docdir}/${pkgname}-${version}"
48 build()
50     set -e
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     mkdir -p build
60     cd build
62     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -Wl,-z,lazy" \
63     meson setup $configure_args \
64      --libdir /usr/lib${libSuffix} \
65      --buildtype=release \
66      --strip \
67      -Dvalgrind=false \
68      -Ddefault-dri=3 \
69      -Ddefault-accel=uxa \
70      ..
72     ninja
73     DESTDIR="$destdir" ninja install
75     cd ..
77     # Compress and link man pages (if needed)
78     (
79         cd "${destdir}/$mandir"
80         find . -type f -exec lzip -9 '{}' +
81         find . -type l | while read -r file
82         do
83             ln -sf "$(readlink -- "$file").lz" "${file}.lz"
84             rm -- "$file"
85         done
86     )
88     # Copy documentation
89     mkdir -p "${destdir}${docsdir}"
90     cp -p $docs "${destdir}${docsdir}/"