diff options
author | 2023-10-30 00:17:11 +0200 | |
---|---|---|
committer | 2023-10-30 00:17:11 +0200 | |
commit | f1689f39c7bc6245f7f4fc8083d41bc82f4621d9 (patch) | |
tree | c53354621506e0a6db5985cfc17754857043ec55 /media-gfx/eog-plugins/eog-plugins-44.0-r2.ebuild | |
parent | media-gfx/entangle: Explicitly depend on libpeas SLOT=0 (diff) | |
download | gentoo-f1689f39c7bc6245f7f4fc8083d41bc82f4621d9.tar.gz gentoo-f1689f39c7bc6245f7f4fc8083d41bc82f4621d9.tar.bz2 gentoo-f1689f39c7bc6245f7f4fc8083d41bc82f4621d9.zip |
media-gfx/eog-plugins: Explicitly depend on libpeas SLOT=0
Another libpeas SLOT is coming.
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'media-gfx/eog-plugins/eog-plugins-44.0-r2.ebuild')
-rw-r--r-- | media-gfx/eog-plugins/eog-plugins-44.0-r2.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/media-gfx/eog-plugins/eog-plugins-44.0-r2.ebuild b/media-gfx/eog-plugins/eog-plugins-44.0-r2.ebuild new file mode 100644 index 000000000000..a328d90eaa24 --- /dev/null +++ b/media-gfx/eog-plugins/eog-plugins-44.0-r2.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome.org meson python-single-r1 + +DESCRIPTION="Eye of GNOME plugins" +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins 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 +} |