gentoo-ebuilds/app-i18n/xvnkb/files/meson.options
NHOrus f1c74fe44f
app-i18n/xvnkb: Add meson build manifest instead of bash
Package has two problems: It's doesn't compile with c23 and it's
build system is badly handwritten, and fails to configure due to
changes to bash and build environment.
It also makes Eli Schwartz scream (# 900398#c5 ).
Fix build by limiting C version to gnu17.
Fix configure by rewriting build in Meson.
New build artifacts are running, can't test if they are working
correctly - original build fails to configure on my system at all.

Bug: https://bugs.gentoo.org/879631
Bug: https://bugs.gentoo.org/926090
Bug: https://bugs.gentoo.org/900398
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/40404
Signed-off-by: Sam James <sam@gentoo.org>
2025-02-10 09:41:10 +00:00

20 lines
502 B
Text

option(
'abcstroke',
type: 'boolean',
value: false,
description: 'Enable ABC liked Telex keystroke',
)
option(
'extstroke',
type: 'boolean',
value: true,
description: 'Enable extended keystroke',
)
option(
'prostroke',
type: 'boolean',
value: false,
description: 'Enable programmer keystroke',
)
option('spellcheck', type: 'boolean', value: true, description: 'Spelling check')
option('xft', type: 'feature', value: 'enabled', description: 'X freetype')