media-gfx/eog-plugins: Support new python versions

And depend on libpeas1 subslot

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2026-05-02 14:44:40 +02:00
parent de7ebf6747
commit 96c400aebb
@@ -0,0 +1,74 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit gnome.org meson python-single-r1
DESCRIPTION="Eye of GNOME plugins"
HOMEPAGE="https://gitlab.gnome.org/GNOME/eog-plugins"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+exif map +python test"
RESTRICT="!test? ( test )"
REQUIRED_USE="
map? ( exif )
python? ( ${PYTHON_REQUIRED_USE} )
"
RDEPEND="
>=dev-libs/glib-2.53.4:2
>=dev-libs/libpeas-1.14.1:0=
>=media-gfx/eog-41.0:1
exif? ( >=media-libs/libexif-0.6.16 )
map? (
media-libs/libchamplain:0.12[gtk]
>=media-libs/clutter-1.9.4:1.0
>=media-libs/clutter-gtk-1.1.2:1.0
)
python? (
${PYTHON_DEPS}
dev-libs/glib[dbus]
dev-libs/libpeas:0=[gtk,python,${PYTHON_SINGLE_USEDEP}]
$(python_gen_cond_dep '
dev-python/pygobject:3[${PYTHON_USEDEP}]
')
gnome-base/gsettings-desktop-schemas
media-gfx/eog[introspection]
x11-libs/gtk+:3[introspection]
x11-libs/pango[introspection]
)
"
DEPEND="${RDEPEND}
test? ( dev-libs/appstream-glib )
"
BDEPEND="
>=sys-devel/gettext-0.19.7
virtual/pkgconfig
"
pkg_setup() {
use python && python-single-r1_pkg_setup
}
src_configure() {
local emesonargs=(
$(meson_use exif plugin_exif-display)
$(meson_use python plugin_export-to-folder)
-Dplugin_fit-to-width=true
$(meson_use python plugin_fullscreenbg)
-Dplugin_light-theme=true
$(meson_use map plugin_map)
$(meson_use python plugin_maximize-windows)
-Dplugin_postasa=false
-Dplugin_postr=false
$(meson_use python plugin_pythonconsole)
-Dplugin_send-by-mail=true
$(meson_use python plugin_slideshowshuffle)
)
meson_src_configure
}