Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/eog-plugins/
Date: Sun, 09 Jan 2022 19:42:31
Message-Id: 1641757300.fc4992044cd948217c3db12ee994cc0a14e06a8b.mattst88@gentoo
1 commit: fc4992044cd948217c3db12ee994cc0a14e06a8b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 9 19:14:50 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 9 19:41:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc499204
7
8 media-gfx/eog-plugins: Version bump to 3.26.8
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-gfx/eog-plugins/Manifest | 1 +
13 media-gfx/eog-plugins/eog-plugins-3.26.8.ebuild | 70 +++++++++++++++++++++++++
14 2 files changed, 71 insertions(+)
15
16 diff --git a/media-gfx/eog-plugins/Manifest b/media-gfx/eog-plugins/Manifest
17 index f3e10c91fcc1..a2909f1ae8da 100644
18 --- a/media-gfx/eog-plugins/Manifest
19 +++ b/media-gfx/eog-plugins/Manifest
20 @@ -1 +1,2 @@
21 DIST eog-plugins-3.26.7.tar.xz 482336 BLAKE2B 9cd1d7e16f8e7f1fe06c3bc2ea79ab06c397beaf9d9bfb26568ad5fb90a144ceab11f6250c7dd51ebb5d3962fff47a4c855b85725b95abca07cdc4de739a2b7e SHA512 c9312eccc5529b01cb285a165c833243ea60bb12f8be6f40ccc6da0db1bd951916000a48aa31705b048659e8d637aa7e56d761fe0f9be720a4e0ce81289d2b83
22 +DIST eog-plugins-3.26.8.tar.xz 479356 BLAKE2B ab781311473e045ffbb88e741427ac59f129fa53e6c551231d7b6edae81d21483dd1f1e7874561dfa29c9e9b2ba01fbdb174302bf8363478b785ec2ce38c53ec SHA512 a58aa849b09761dd0c7f7d31098560969872b03788f3f3ee81445dfb9be653b29e0e6646abc4e0164e4146abf7a9d2e6aadf56071f71c119493dcf1fd706a069
23
24 diff --git a/media-gfx/eog-plugins/eog-plugins-3.26.8.ebuild b/media-gfx/eog-plugins/eog-plugins-3.26.8.ebuild
25 new file mode 100644
26 index 000000000000..bb6d66aaee22
27 --- /dev/null
28 +++ b/media-gfx/eog-plugins/eog-plugins-3.26.8.ebuild
29 @@ -0,0 +1,70 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python3_{8..10} )
35 +
36 +inherit gnome2 python-single-r1
37 +
38 +DESCRIPTION="Eye of GNOME plugins"
39 +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +IUSE="+exif map picasa +python"
46 +REQUIRED_USE="
47 + map? ( exif )
48 + python? ( ${PYTHON_REQUIRED_USE} )
49 +"
50 +
51 +RDEPEND="
52 + >=dev-libs/glib-2.38:2
53 + >=dev-libs/libpeas-0.7.4:=
54 + >=media-gfx/eog-3.15.90
55 + >=x11-libs/gtk+-3.14:3
56 + exif? ( >=media-libs/libexif-0.6.16 )
57 + map? (
58 + media-libs/libchamplain:0.12[gtk]
59 + >=media-libs/clutter-1.9.4:1.0
60 + >=media-libs/clutter-gtk-1.1.2:1.0 )
61 + picasa? ( >=dev-libs/libgdata-0.9.1:= )
62 + python? (
63 + ${PYTHON_DEPS}
64 + >=dev-libs/glib-2.32:2[dbus]
65 + dev-libs/libpeas:=[gtk,python,${PYTHON_SINGLE_USEDEP}]
66 + $(python_gen_cond_dep '
67 + dev-python/pygobject:3[${PYTHON_USEDEP}]
68 + ')
69 + gnome-base/gsettings-desktop-schemas
70 + media-gfx/eog[introspection]
71 + x11-libs/gtk+:3[introspection]
72 + x11-libs/pango[introspection] )
73 +"
74 +DEPEND="${RDEPEND}"
75 +BDEPEND="
76 + >=sys-devel/gettext-0.19.7
77 + virtual/pkgconfig
78 +"
79 +
80 +pkg_setup() {
81 + use python && python-single-r1_pkg_setup
82 +}
83 +
84 +src_configure() {
85 + local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
86 + use exif && plugins="${plugins},exif-display"
87 + use map && plugins="${plugins},map"
88 + use picasa && plugins="${plugins},postasa"
89 + use python && plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder,maximize-windows"
90 + gnome2_src_configure \
91 + $(use_enable python) \
92 + --with-plugins=${plugins}
93 +}
94 +
95 +src_install() {
96 + default
97 + mv "${ED}"/usr/share/{appdata,metainfo}
98 + find "${ED}" -type f -name "*.la" -delete || die
99 +}