recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / tools / kbd / recipe
blob2a18b2799427d1b051d2a7e9a6b0c7bb69e4143f
1 # Build recipe for kbd.
3 # Copyright (c) 2016-2019 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 program=kbd
18 version=2.2.0
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=tools
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://mirrors.edge.kernel.org/pub/linux/utils/kbd/$tarname
29 description="
30 Keyboard utilities for GNU/Linux.
32 The kbd package contains key-table files and keyboard utilities.
35 homepage=http://kbd-project.org
36 license=GPLv2+
38 # Source documentation
39 docs="AUTHORS COPYING CREDITS ChangeLog NEWS README"
40 docsdir="${docdir}/${program}-${version}"
42 build()
44     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     # Set sane permissions
51     chmod -R u+w,go-w,a+rX-s .
53     # Fix inconsistent behaviour of Backspace and Delete keys
54     # for i386 keymaps (Thanks to "Linux From Scratch")
55     patch -Np1 -i "${worktree}/patches/kbd/kbd-2.2.0-backspace-1.patch"
57     # Remove the redundant resizecons program (it requires the defunct
58     # svgalib to provide the video mode files - for normal use setfont
59     # sizes the console appropriately) together with its manpage.
60     # (Thanks again to "Linux From Scratch")
61     sed -i 's/\(RESIZECONS_PROGS=\)yes/\1no/g' configure
62     sed -i 's/resizecons.8 //' docs/man/man8/Makefile.in
64     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
65      $configure_args \
66      --libdir=/usr/lib${libSuffix} \
67      --mandir=$mandir \
68      --disable-vlock \
69      --enable-optional-progs \
70      --enable-nls \
71      --build="$(cc -dumpmachine)"
73     make -j${jobs} V=1
74     make -j${jobs} DESTDIR="$destdir" install
76     # Include Dragora's menu-driven tool to configure the keyboard map
78     mkdir -p "${destdir}/usr/sbin"
79     cp -p "${worktree}/archive/dragora-tools/dragora-keymap" \
80           "${destdir}/usr/sbin"
81     chmod 755 "${destdir}/usr/sbin/dragora-keymap"
83     # Compress and link man pages (if needed)
84     if test -d "${destdir}/$mandir"
85     then
86         (
87             cd "${destdir}/$mandir"
88             find . -type f -exec lzip -9 '{}' +
89             find . -type l | while read -r file
90             do
91                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
92                 rm -- "$file"
93             done
94         )
95     fi
97     # Copy documentation
98     mkdir -p "${destdir}${docsdir}"
100     for file in $docs
101     do
102         cp -p $file "${destdir}${docsdir}"
103     done