blob: 22707dea664d7bf11f085bd49baa36f273390e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=kbd
pkgver=2.0.4
pkgrel=2
pkgdesc="Tools for configuring the console (keyboard, virtual terminals, etc.)"
url="http://ftp.altlinux.org/pub/people/legion/kbd"
arch="all"
license="GPL-2.0-or-later"
depends="kbd-misc"
makedepends="linux-headers linux-pam-dev check-dev ckbcomp xkeyboard-config"
install=""
subpackages="$pkgname-bkeymaps::noarch $pkgname-legacy::noarch $pkgname-misc::noarch $pkgname-doc $pkgname-vlock"
source="https://www.kernel.org/pub/linux/utils/kbd/kbd-$pkgver.tar.gz
error.h
fix-tests.patch
"
builddir="$srcdir"/kbd-$pkgver
_datadir=/usr/share
_xmapdir="$_datadir"/keymaps/xkb
_bmapdir="$_datadir"/bkeymaps
_badmaps="pk-ara"
prepare() {
default_prepare
cd "$builddir"
cp "$srcdir"/error.h .
}
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--disable-nls \
--prefix=/usr \
--datadir="$_datadir" \
--htmldir=/usr/share/html/$pkgname
make
}
check() {
cd "$builddir"
make check
}
_listxmaps() {
local invariant line; invariant=false
grep -v '^$' /usr/share/X11/xkb/rules/base.lst | while read line; do
case "$line" in
'! variant') invariant=true ;;
'!'*) invariant=false ;;
*) if $invariant; then
echo "$line" | cut -d: -f1
fi ;;
esac
done
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
# Move and fixup legacy keymaps
mkdir legacy
mv "$pkgdir"/usr/share/keymaps/* legacy
mv legacy "$pkgdir"/usr/share/keymaps
cd "$pkgdir"/usr/share/keymaps/legacy/i386
# Make ISO-8815-9 maps the default, instead of 7-bit ones
ln -s pt-latin9.map.gz qwerty/pt.map.gz
mv azerty/fr.map.gz azerty/fr-old.map.gz
ln -s fr-latin9.map.gz azerty/fr.map.gz
# Add some legacy aliases
ln -s fr-latin9.map.gz azerty/fr-latin0.map.gz
ln -s sv-latin1.map.gz qwerty/se-latin1.map.gz
ln -s sr-cy.map.gz qwerty/sr-latin.map.gz
# Rename conflicting keymaps
mv dvorak/no.map.gz dvorak/no-dvorak.map.gz
mv fgGIod/trf.map.gz fgGIod/trf-fgGIod.map.gz
mv olpc/es.map.gz olpc/es-olpc.map.gz
mv olpc/pt.map.gz olpc/pt-olpc.map.gz
mv qwerty/cz.map.gz qwerty/cz-qwerty.map.gz
# Remove useless layouts
rm -f i386/qwerty/ro_win.map.gz
cd "$builddir"
# Compile keymaps from X.org layouts
mkdir -p "$pkgdir$_xmapdir"
local layout variant
_listxmaps | while read -r variant layout; do
if ! test -f "$pkgdir$_xmapdir"/"$layout".map.gz; then
echo "Generating keymap $layout..."
ckbcomp "$layout" | gzip > "$pkgdir$_xmapdir"/"$layout".map.gz || exit 1
fi
echo "Generating keymap $layout-$variant..."
ckbcomp "$layout" "$variant" | gzip > "$pkgdir$_xmapdir"/"$layout"-"$variant".map.gz || exit 1
done
# Do some fix-ups on X.org keymaps
mv "$pkgdir$_xmapdir"/fi.map.gz "$pkgdir$_xmapdir"/fi-kotoistus.map.gz
# Install html documentation
mkdir -p "$pkgdir$_datadir"/html/$pkgname
mv docs/doc/*.html "$pkgdir$_datadir"/html/$pkgname
# Replace busybox setfont utility.
mkdir -p "$pkgdir"/usr/sbin
mv "$pkgdir"/usr/bin/setfont "$pkgdir"/usr/sbin
# Link open to openvt
ln -s openvt "$pkgdir"/usr/bin/open
}
vlock() {
pkgdesc="$pkgname vlock implemantation"
depends=
# This is the only binary needing linux-pam so moving this to a
# subpackage reduces the amount of depencies of the kbd package.
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/vlock "$subpkgdir"/usr/bin
}
bkeymaps() {
pkgdesc="X.org-derived binary keymaps"
depends=
replaces="bkeymaps"
provides="bkeymaps"
mkdir -p "$subpkgdir$_bmapdir"
local map variant layout; for map in "$pkgdir$_xmapdir"/*.map.gz; do
variant="$(basename "$map" | cut -d. -f1)"
case "$variant" in $_badmaps) continue ;; esac
layout="${variant%%-*}"
mkdir -p "$subpkgdir$_bmapdir"/$layout
echo "Generating binary keymap $variant..."
"$pkgdir"/usr/bin/loadkeys -ub "$map" | gzip > "$subpkgdir$_bmapdir"/$layout/$variant.bmap.gz
done
}
legacy() {
pkgdesc="kbd legacy keymaps"
depends=
mkdir -p "$subpkgdir$_datadir"/keymaps
mv "$pkgdir$_datadir"/keymaps/legacy "$subpkgdir$_datadir"/keymaps
}
misc() {
pkgdesc="kbd keymaps and console data"
depends=
mkdir -p "$subpkgdir$_datadir"
local dir; for dir in consolefonts consoletrans keymaps unimaps; do
mv "$pkgdir$_datadir"/$dir "$subpkgdir$_datadir"
done
}
sha512sums="e37bc661c75a8363e9a5ba903310fa7f7ded4f381c2c77aa7edc0b1aca5a63224933fd113cddcf180e7fb85f55407e0d1f47be1cdf69dcf2787e83ac996bbf03 kbd-2.0.4.tar.gz
c66f6b0d8c8b8d285c740bdbe7130dee272ac01cd5e73b35a58cedf1a77fe8d9e062631b804fb58014d8eb9861c8f28aed07bc022ef31662bcc61b5c85a21752 error.h
bb67e5bb933a48f4a04402e07d7d67169a97485e6b469f8ccd4436466eb17ec2ddcf0ef74d22b3aae9e813feaee5bef0822ec50c384e0276a8c91f9325502a5f fix-tests.patch"
|