add xf86-video-intel-20170826 (Thanks to BLFS)
[dragora.git] / recipes / xorg / driver / xf86-video-intel / recipe
blob3e06acb4a5eee7cb8d642d4d6699f70386a937c7
1 # Build recipe for xf86-video-intel.
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=xf86-video-intel
19 version=20170826
20 release=1
22 tarname=${program}-${version}.tar.xz
24 # Remote source(s)
25 fetch=http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/$tarname
27 description="
28 Video driver for the Xorg X server supporting Intel chipsets.
30 This package is part of X11.
33 homepage=http://www.x.org
34 license="MIT X Consortium"
36 # Source documentation
37 docs="AUTHORS COPYING ChangeLog NEWS README"
38 docsdir="${docdir}/${program}-${version}"
40 build()
42     set -e
44     unpack "${tardir}/$tarname"
46     cd "$srcdir"
48     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
49      $configure_args \
50      --libdir=/usr/lib${libSuffix} \
51      --infodir=$infodir \
52      --mandir=$mandir \
53      --docdir=$docsdir \
54      --enable-dri3 \
55      --enable-create2 \
56      --enable-async-swap \
57      || true
59     make -j${jobs} V=1
60     make -j${jobs} DESTDIR="$destdir" install-strip
62     # Compress info documents deleting index file for the package
63     if test -d "${destdir}/$infodir"
64     then
65         rm -f "${destdir}/${infodir}/dir"
66         lzip -9 "${destdir}/${infodir}"/*
67     fi
69     # Compress and link man pages (if needed)
70     if test -d "${destdir}/$mandir"
71     then
72         (
73             cd "${destdir}/$mandir"
74             find . -type f -exec lzip -9 '{}' +
75             find . -type l | while read -r file
76             do
77                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
78                 rm -- "$file"
79             done
80         )
81     fi
83     # Copy documentation
84     mkdir -p "${destdir}${docsdir}"
86     for file in $docs
87     do
88         if test -e $file
89         then
90             cp -p $file "${destdir}${docsdir}"
91         fi
92     done