gui-libs/gtk-session-lock: sync live

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2024-12-15 00:35:06 +09:00
parent 8f0fae3761
commit 32b5348d7c

View File

@@ -1,11 +1,10 @@
# Copyright 1999-2022 Gentoo Authors # Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=8 EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
VALA_USE_DEPEND="vapigen" VALA_USE_DEPEND="vapigen"
inherit vala meson python-any-r1 inherit vala meson
if [[ ${PV} == 9999 ]]; then if [[ ${PV} == 9999 ]]; then
inherit git-r3 inherit git-r3
@@ -21,8 +20,9 @@ HOMEPAGE="https://github.com/Cu3PO42/gtk-session-lock"
LICENSE="GPL-3" LICENSE="GPL-3"
SLOT="0" SLOT="0"
IUSE="examples gtk-doc introspection test vala" IUSE="examples gtk-doc introspection vala"
RESTRICT="!test? ( test )" # https://github.com/Cu3PO42/gtk-session-lock/commit/a92080b164df7553aa250d43f90965535a3050ba
RESTRICT="test"
REQUIRED_USE="vala? ( introspection )" REQUIRED_USE="vala? ( introspection )"
DEPEND=" DEPEND="
@@ -31,7 +31,6 @@ DEPEND="
>=dev-libs/wayland-1.22.0 >=dev-libs/wayland-1.22.0
>=dev-libs/wayland-protocols-1.34 >=dev-libs/wayland-protocols-1.34
gui-libs/gtk-layer-shell gui-libs/gtk-layer-shell
test? ( gui-libs/gtk-layer-shell[introspection?] )
" "
RDEPEND=" RDEPEND="
${DEPEND} ${DEPEND}
@@ -42,7 +41,6 @@ BDEPEND="
virtual/pkgconfig virtual/pkgconfig
dev-build/meson dev-build/meson
gtk-doc? ( dev-util/gtk-doc ) gtk-doc? ( dev-util/gtk-doc )
test? ( ${PYTHON_DEPS} )
vala? ( $(vala_depend) ) vala? ( $(vala_depend) )
" "
@@ -55,7 +53,7 @@ src_configure() {
local emesonargs=( local emesonargs=(
$(meson_use examples) $(meson_use examples)
$(meson_use gtk-doc docs) $(meson_use gtk-doc docs)
$(meson_use test tests) -Dtests=false
$(meson_use introspection) $(meson_use introspection)
$(meson_use vala vapi) $(meson_use vala vapi)
) )