mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 22:53:31 +02:00
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>
20 lines
502 B
Text
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')
|