recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / xorg / app / xinit / recipe
blob2b60f2df43b269a4891f271da7f55ee9209ec975
1 # Build recipe for xinit.
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=xinit
19 version=1.4.1
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=xorg
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://www.x.org/releases/individual/app/$tarname
30 description="
31 X Window System initializer.
33 The xinit program is used to start the X Window System server and a
34 first client program on systems that are not using a display manager
35 such as xdm(1) or in environments that use multiple window systems.
38 homepage=http://www.x.org
39 license="MIT X Consortium"
41 # Source documentation
42 docs="COPYING ChangeLog README.md"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
57      $configure_args \
58      --libdir=/usr/lib${libSuffix} \
59      --mandir=$mandir \
60      --docdir=$docsdir \
61      --with-xinitdir=/etc/X11/xinit
63     make -j${jobs} V=1
64     make -j${jobs} DESTDIR="$destdir" install
66     # Hence the X session starts on the first unused virtual terminal,
67     # which normally is vt7 (Thanks to BLFS!) ...
68     sed -e '/$serverargs $vtarg/ s/serverargs/: #&/' \
69         -i "${destdir}/usr/bin/startx"
71     # Delete default xinitrc for TWM, this is
72     # provided by the twm package now
74     rm -f "${destdir}/etc/X11/xinit/xinitrc"
75     ( cd -- "$destdir" && rmdir -p etc/X11/xinit )
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 '{}' +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     # Copy documentation
92     mkdir -p "${destdir}${docsdir}"
93     cp -p $docs "${destdir}${docsdir}"