Install this version:
emerge -a =app-alternatives/phosh-keyboard-2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-alternatives/phosh-keyboard-2
Or alternatively:
emerge --autounmask-write -a =app-alternatives/phosh-keyboard-2
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 2 | 8 | ~amd64 |
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ALTERNATIVES=(
"stevia:phosh-base/phosh-osk-stevia"
)
inherit app-alternatives
DESCRIPTION="sm.puri.OSK0.desktop symlinks"
KEYWORDS="~amd64"
src_install() {
local target="/usr/share/applications/sm.puri.OSK0.desktop"
case $(get_alternative) in
stevia)
dosym mobi.phosh.Stevia.desktop "${target:?}";;
esac
}