recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / tools / kbd / recipe
blob26848f7640c8d02c38463112ef0daed8b0f8be8e
1 # Build recipe for kbd.
3 # Copyright (c) 2016-2021 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Exit immediately on any error
18 set -e
20 program=kbd
21 version=2.4.0
22 release=2
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://mirrors.edge.kernel.org/pub/linux/utils/kbd/$tarname
32 description="
33 Keyboard utilities for GNU/Linux.
35 The kbd package contains key-table files and keyboard utilities.
38 homepage=https://kbd-project.org
39 license=GPLv2+
41 # Source documentation
42 docs="AUTHORS COPYING CREDITS ChangeLog NEWS README"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     # Use patches from Fedora to improve kbd
55     patch -Np1 -i "${worktree}/patches/kbd/kbd-1.15-keycodes-man.patch"
56     patch -Np1 -i "${worktree}/patches/kbd/kbd-1.15-unicode_start.patch"
57     patch -Np1 -i "${worktree}/patches/kbd/kbd-2.0.4-covscan-fixes.patch"
59     # Fix inconsistent behaviour of Backspace and Delete keys
60     # for i386 keymaps (Thanks to "Linux From Scratch")
61     patch -Np1 -i "${worktree}/patches/kbd/kbd-2.4.0-backspace-1.patch"
63     # Remove the redundant resizecons program (it requires the defunct
64     # svgalib to provide the video mode files - for normal use setfont
65     # sizes the console appropriately) together with its manpage.
66     # (Thanks again to "Linux From Scratch")
67     sed -i '/RESIZECONS_PROGS=/s/yes/no/' configure
68     sed -i 's/resizecons.8 //' docs/man/man8/Makefile.in
70     ./configure CPPFLAGS="$QICPPFLAGS" \
71     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
72      $configure_args \
73      --libdir=/usr/lib${libSuffix} \
74      --mandir=$mandir \
75      --disable-vlock \
76      --enable-optional-progs \
77      --enable-nls \
78      --build="$(gcc -dumpmachine)"
80     make -j${jobs} V=1
81     make -j${jobs} DESTDIR="$destdir" install
83     # Include Dragora's menu-driven tool to configure the keyboard map
85     mkdir -p "${destdir}/usr/sbin"
86     cp -p "${worktree}/archive/dragora-tools/dragora-keymap" \
87           "${destdir}/usr/sbin"
88     chmod 755 "${destdir}/usr/sbin/dragora-keymap"
90     # Compress and link man pages (if needed)
91     if test -d "${destdir}/$mandir"
92     then
93         (
94             cd "${destdir}/$mandir"
95             find . -type f -exec lzip -9 {} +
96             find . -type l | while read -r file
97             do
98                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
99                 rm -- "$file"
100             done
101         )
102     fi
104     # Copy documentation
105     mkdir -p "${destdir}/$docsdir"
106     cp -p $docs "${destdir}/$docsdir"