strip remaining libraries for the distribution size
[dragora.git] / recipes / xorg / xserver / recipe
blob8208cc7818eedf7557a27b1f6eeb29c13357f2a7
1 # Build recipe for xorg-server.
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=xorg-server
19 version=1.19.6
20 release=1
22 tarname=${program}-${version}.tar.bz2
24 # Remote source(s)
25 fetch=http://www.x.org/releases/individual/xserver/$tarname
27 description="
28 A portable, network-transparent Window System.
30 The X Window System is a network transparent window system which
31 runs on a wide range of computing and graphics machines.
34 homepage=http://www.x.org
35 license="MIT X Consortium"
37 # Source documentation
38 docs="COPYING ChangeLog README"
39 docsdir="${docdir}/${program}-${version}"
41 build()
43     set -e
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     sed -i '/^#include <asm\/page.h>/d' Xext/xf86bigfont.c
51     ./configure CPPFLAGS="-D_GNU_SOURCE -D__gid_t=gid_t -D__uid_t=uid_t" \
52      CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
53      $configure_args \
54      --libdir=/usr/lib${libSuffix} \
55      --infodir=$infodir \
56      --mandir=$mandir \
57      --docdir=$docsdir \
58      --enable-xf86bigfont \
59      --enable-xcsecurity \
60      --enable-tslib \
61      --enable-kdrive \
62      --enable-config-udev \
63      --enable-glamor \
64      --enable-dri \
65      --enable-dri2 \
66      --enable-dri3 \
67      --enable-suid-wrapper \
68      --disable-xfake \
69      --disable-systemd-logind \
70      --with-int10=x86emu \
71      --with-default-font-path="/usr/share/fonts/X11/misc,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi:unscaled,/usr/share/fonts/X11/75dpi:unscaled,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/TTF,/usr/share/fonts/X11/OTF" \
72      --with-module-dir=/usr/lib${libSuffix}/xorg/modules \
73      --with-xkb-path=/etc/X11/xkb \
74      --with-xkb-output=/var/lib/xkb \
75      --with-os-name="GNU/Linux-Libre" \
76      --with-os-vendor="Dragora"
78     make -j${jobs} V=1
79     make -j${jobs} DESTDIR="$destdir" install-strip
81     # Compress info documents deleting index file for the package
82     if test -d "${destdir}/$infodir"
83     then
84         rm -f "${destdir}/${infodir}/dir"
85         lzip -9 "${destdir}/${infodir}"/*
86     fi
88     # Compress and link man pages (if needed)
89     if test -d "${destdir}/$mandir"
90     then
91         (
92             cd "${destdir}/$mandir"
93             find . -type f -exec lzip -9 '{}' +
94             find . -type l | while read -r file
95             do
96                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
97                 rm -- "$file"
98             done
99         )
100     fi
102     # Copy documentation
103     mkdir -p "${destdir}${docsdir}"
105     for file in $docs
106     do
107         if test -e $file
108         then
109             cp -p $file "${destdir}${docsdir}"
110         fi
111     done