Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/eog-plugins/
Date: Sun, 02 Aug 2020 21:27:42
Message-Id: 1596403649.80df8d52ceaa92892bf67301b7944c2e538409c0.leio@gentoo
1 commit: 80df8d52ceaa92892bf67301b7944c2e538409c0
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 21:19:57 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 21:27:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80df8d52
7
8 media-gfx/eog-plugins: bump to 3.26.5
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 media-gfx/eog-plugins/Manifest | 1 +
14 media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild | 66 +++++++++++++++++++++++++
15 2 files changed, 67 insertions(+)
16
17 diff --git a/media-gfx/eog-plugins/Manifest b/media-gfx/eog-plugins/Manifest
18 index c4607457e73..3dbdf56a4bc 100644
19 --- a/media-gfx/eog-plugins/Manifest
20 +++ b/media-gfx/eog-plugins/Manifest
21 @@ -1 +1,2 @@
22 DIST eog-plugins-3.26.4.tar.xz 477772 BLAKE2B 104ddf58d33e5513349839312fef820af20d7a3e64a3a8cbd7d964d8250564d6cd62c58cf95fb5359ab95eac8fe2b83ed051e6f3dc8144a8884ec72c74a12622 SHA512 95f2cf2c6ed84b4801517a708f18e1cd673f814d849029a41491f3719512d6a3a2cb5cb11898a7f972f8b674c682245c99964ba2da19b285ed175b720d5396e8
23 +DIST eog-plugins-3.26.5.tar.xz 478188 BLAKE2B 655eb9860435775862ba44bd26530edff778a3c8c574e9bf592800b4d57b4e5b0e52d36b7d71d6a6d615d47c320542105dcee9de89250901fcbfa6c255dcfddc SHA512 3b7979d241c2c0b522ffb6c30a6b8c90fed9e899cda8a73fb9d9a9392f474516f8c24fc75f3f35f920c8a6cf04b8bda611a8669839588936c48467813a6227a7
24
25 diff --git a/media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild b/media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild
26 new file mode 100644
27 index 00000000000..897a10d8bda
28 --- /dev/null
29 +++ b/media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild
30 @@ -0,0 +1,66 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +GNOME2_LA_PUNT="yes"
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit gnome2 python-single-r1
39 +
40 +DESCRIPTION="Eye of GNOME plugins"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +IUSE="+exif map picasa +python"
48 +REQUIRED_USE="
49 + map? ( exif )
50 + python? ( ${PYTHON_REQUIRED_USE} )
51 +"
52 +
53 +RDEPEND="
54 + >=dev-libs/glib-2.38:2
55 + >=dev-libs/libpeas-0.7.4:=
56 + >=media-gfx/eog-3.15.90
57 + >=x11-libs/gtk+-3.14:3
58 + exif? ( >=media-libs/libexif-0.6.16 )
59 + map? (
60 + media-libs/libchamplain:0.12[gtk]
61 + >=media-libs/clutter-1.9.4:1.0
62 + >=media-libs/clutter-gtk-1.1.2:1.0 )
63 + picasa? ( >=dev-libs/libgdata-0.9.1:= )
64 + python? (
65 + ${PYTHON_DEPS}
66 + >=dev-libs/glib-2.32:2[dbus]
67 + dev-libs/libpeas:=[gtk,python,${PYTHON_SINGLE_USEDEP}]
68 + $(python_gen_cond_dep '
69 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
70 + ')
71 + gnome-base/gsettings-desktop-schemas
72 + media-gfx/eog[introspection]
73 + x11-libs/gtk+:3[introspection]
74 + x11-libs/pango[introspection] )
75 +"
76 +# libxml2 required for glib-compile-resources
77 +DEPEND="${RDEPEND}
78 + dev-libs/libxml2:2
79 + >=sys-devel/gettext-0.19.7
80 + virtual/pkgconfig
81 +"
82 +
83 +pkg_setup() {
84 + use python && python-single-r1_pkg_setup
85 +}
86 +
87 +src_configure() {
88 + local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
89 + use exif && plugins="${plugins},exif-display"
90 + use map && plugins="${plugins},map"
91 + use picasa && plugins="${plugins},postasa"
92 + use python && plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder,maximize-windows"
93 + gnome2_src_configure \
94 + $(use_enable python) \
95 + --with-plugins=${plugins}
96 +}