Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/eog-plugins/
Date: Tue, 27 Feb 2018 22:05:52
Message-Id: 1519769013.bc9d54fb81cba1597a67b373de977077588ad6bd.pacho@gentoo
1 commit: bc9d54fb81cba1597a67b373de977077588ad6bd
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 27 22:01:08 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 27 22:03:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc9d54fb
7
8 media-gfx/eog-plugins: Disable support for obsolete postr (#640046)
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild | 63 ++++++++++++++++++++++
13 1 file changed, 63 insertions(+)
14
15 diff --git a/media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild b/media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild
16 new file mode 100644
17 index 00000000000..a0b0057c558
18 --- /dev/null
19 +++ b/media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild
20 @@ -0,0 +1,63 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +GNOME2_LA_PUNT="yes"
26 +PYTHON_COMPAT=( python{3_4,3_5,3_6} )
27 +
28 +inherit gnome2 python-single-r1
29 +
30 +DESCRIPTION="Eye of GNOME plugins"
31 +HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +IUSE="+exif map picasa +python"
38 +REQUIRED_USE="
39 + map? ( exif )
40 + python? ( ${PYTHON_REQUIRED_USE} )
41 +"
42 +
43 +RDEPEND="
44 + >=dev-libs/glib-2.38:2
45 + >=dev-libs/libpeas-0.7.4:=
46 + >=media-gfx/eog-3.15.90
47 + >=x11-libs/gtk+-3.14:3
48 + exif? ( >=media-libs/libexif-0.6.16 )
49 + map? (
50 + media-libs/libchamplain:0.12[gtk]
51 + >=media-libs/clutter-1.9.4:1.0
52 + >=media-libs/clutter-gtk-1.1.2:1.0 )
53 + picasa? ( >=dev-libs/libgdata-0.9.1:= )
54 + python? (
55 + ${PYTHON_DEPS}
56 + >=dev-libs/glib-2.32:2[dbus]
57 + dev-libs/libpeas:=[gtk,python,${PYTHON_USEDEP}]
58 + dev-python/pygobject:3[${PYTHON_USEDEP}]
59 + gnome-base/gsettings-desktop-schemas
60 + media-gfx/eog[introspection]
61 + x11-libs/gtk+:3[introspection]
62 + x11-libs/pango[introspection] )
63 +"
64 +DEPEND="${RDEPEND}
65 + >=dev-util/intltool-0.50.1
66 + sys-devel/gettext
67 + virtual/pkgconfig
68 +"
69 +
70 +pkg_setup() {
71 + use python && python-single-r1_pkg_setup
72 +}
73 +
74 +src_configure() {
75 + local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
76 + use exif && plugins="${plugins},exif-display"
77 + use map && plugins="${plugins},map"
78 + use picasa && plugins="${plugins},postasa"
79 + use python && plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder,maximize-windows"
80 + gnome2_src_configure \
81 + $(use_enable python) \
82 + --with-plugins=${plugins}
83 +}