Files
guru/phosh-base/phosh-osk-stevia/phosh-osk-stevia-0.52.0.ebuild
Anna (cybertailor) Vyalkova 36a85d43a1 phosh-base/phosh-osk-stevia: add 0.52.0, drop 0.48.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2026-01-04 12:35:47 +05:00

95 lines
2.1 KiB
Bash

# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2-utils meson systemd virtualx verify-sig xdg
DESCRIPTION="Alternative on screen keyboard for Phosh"
HOMEPAGE="https://gitlab.gnome.org/World/Phosh/stevia"
SRC_URI="https://sources.phosh.mobi/releases/${PN}/${P}.tar.xz
verify-sig? ( https://sources.phosh.mobi/releases/${PN}/${P}.tar.xz.asc )"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="gtk-doc man systemd test"
RESTRICT="!test? ( test )"
# TODO: package govarnam
# TODO: hunspell is automagic
RDEPEND="
!phosh-base/phosh-osk-stub
app-shells/fzf
app-text/hunspell:=
>=dev-libs/glib-2.80:2
dev-libs/feedbackd
dev-libs/json-glib
>=dev-libs/wayland-1.14
>=gnome-base/gnome-desktop-3.26:3=
>=gui-libs/libhandy-1.1.90:1
x11-libs/cairo
>=x11-libs/gtk+-3.22:3[wayland]
x11-libs/pango
systemd? ( >=sys-apps/systemd-241:= )
!systemd? ( >=sys-auth/elogind-241 )
"
DEPEND="${RDEPEND}
>=dev-libs/gmobile-0.2.0
>=dev-libs/wayland-protocols-1.12
>=gnome-base/gsettings-desktop-schemas-47
x11-libs/libxkbcommon[wayland]
kernel_linux? ( sys-kernel/linux-headers )
"
BDEPEND="
dev-libs/glib:2
dev-libs/libxml2:2
dev-util/gdbus-codegen
dev-util/glib-utils
dev-util/wayland-scanner
sys-devel/gettext
gtk-doc? ( dev-util/gi-docgen )
man? ( dev-python/docutils )
test? ( dev-libs/json-glib )
verify-sig? ( sec-keys/openpgp-keys-phosh )
"
VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/phosh.asc"
QA_DESKTOP_FILE="usr/share/applications/mobi.phosh.Stevia.desktop"
src_configure() {
local emesonargs=(
-Ddefault_osk=false
-Dsystemd_user_unit_dir="$(systemd_get_userunitdir)"
$(meson_use gtk-doc gtk_doc)
$(meson_use man)
$(meson_use test tests)
)
meson_src_configure
}
src_test() {
virtx meson_src_test
}
src_install() {
meson_src_install
if use gtk-doc; then
mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die
mv "${ED}"/usr/share/doc/pos-${SLOT} "${ED}"/usr/share/gtk-doc/html/ || die
fi
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}