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: Sat, 04 Aug 2018 13:03:38
Message-Id: 1533387796.ccf2ca70869ffc42ffb513344eda5f185873db5a.leio@gentoo
1 commit: ccf2ca70869ffc42ffb513344eda5f185873db5a
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 4 12:58:25 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 4 13:03:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf2ca70
7
8 media-gfx/eog-plugins: bump to 3.26.3
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 media-gfx/eog-plugins/Manifest | 1 +
13 media-gfx/eog-plugins/eog-plugins-3.26.3.ebuild | 64 +++++++++++++++++++++++++
14 2 files changed, 65 insertions(+)
15
16 diff --git a/media-gfx/eog-plugins/Manifest b/media-gfx/eog-plugins/Manifest
17 index 93e2705dfd2..5b3c0fcffeb 100644
18 --- a/media-gfx/eog-plugins/Manifest
19 +++ b/media-gfx/eog-plugins/Manifest
20 @@ -1 +1,2 @@
21 DIST eog-plugins-3.16.6.tar.xz 398836 BLAKE2B fcd3c6dc61ca6d935580caffdf9c941d34265f8caa6cd3d682e0d7679888f6965f64ac30b807c00417e904b4e0eeff1a213a8f6d284c130abe265f9c97fc636b SHA512 e3bff786785ae36a41bc7c5fcb3cf75233595777409f373c4a6597fa6e432f72c7a75608e09ab66e1033ca0d12e3855346d7f7e0c571014b5aaef40184a3383b
22 +DIST eog-plugins-3.26.3.tar.xz 470712 BLAKE2B cd5845481006b681555f35d1f353ed624baa83fc8fc45bb889b2418f31a776bf9e08e270f911f61f431123825a5b96fa684f72e378ddd0ad1107ff44a5c98519 SHA512 5ea0bbf692fa71fa77b0b78307cceee067c95e80c2e69e173990c1154df8014912f24f8d023eda79da56b7c1bdf0870e5e92b968a68c4961af3fc1382d4f468c
23
24 diff --git a/media-gfx/eog-plugins/eog-plugins-3.26.3.ebuild b/media-gfx/eog-plugins/eog-plugins-3.26.3.ebuild
25 new file mode 100644
26 index 00000000000..93902b0bb3c
27 --- /dev/null
28 +++ b/media-gfx/eog-plugins/eog-plugins-3.26.3.ebuild
29 @@ -0,0 +1,64 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +GNOME2_LA_PUNT="yes"
35 +PYTHON_COMPAT=( python{3_4,3_5,3_6} )
36 +
37 +inherit gnome2 python-single-r1
38 +
39 +DESCRIPTION="Eye of GNOME plugins"
40 +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +IUSE="+exif map picasa +python"
47 +REQUIRED_USE="
48 + map? ( exif )
49 + python? ( ${PYTHON_REQUIRED_USE} )
50 +"
51 +
52 +RDEPEND="
53 + >=dev-libs/glib-2.38:2
54 + >=dev-libs/libpeas-0.7.4:=
55 + >=media-gfx/eog-3.15.90
56 + >=x11-libs/gtk+-3.14:3
57 + exif? ( >=media-libs/libexif-0.6.16 )
58 + map? (
59 + media-libs/libchamplain:0.12[gtk]
60 + >=media-libs/clutter-1.9.4:1.0
61 + >=media-libs/clutter-gtk-1.1.2:1.0 )
62 + picasa? ( >=dev-libs/libgdata-0.9.1:= )
63 + python? (
64 + ${PYTHON_DEPS}
65 + >=dev-libs/glib-2.32:2[dbus]
66 + dev-libs/libpeas:=[gtk,python,${PYTHON_USEDEP}]
67 + dev-python/pygobject:3[${PYTHON_USEDEP}]
68 + gnome-base/gsettings-desktop-schemas
69 + media-gfx/eog[introspection]
70 + x11-libs/gtk+:3[introspection]
71 + x11-libs/pango[introspection] )
72 +"
73 +# libxml2 required for glib-compile-resources
74 +DEPEND="${RDEPEND}
75 + dev-libs/libxml2:2
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 +}