Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: media-gfx/eog-plugins/
Date: Wed, 26 Dec 2012 22:09:52
Message-Id: 1356559303.cdda649fc740888fc07863ad134fb0721f4a4cc9.eva@gentoo
1 commit: cdda649fc740888fc07863ad134fb0721f4a4cc9
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 26 22:01:43 2012 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 26 22:01:43 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=cdda649f
7
8 media-gfx/eog-plugins: moved to gx86
9
10 ---
11 media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild | 83 ------------------------
12 1 files changed, 0 insertions(+), 83 deletions(-)
13
14 diff --git a/media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild b/media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild
15 deleted file mode 100644
16 index 4f619cc..0000000
17 --- a/media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild
18 +++ /dev/null
19 @@ -1,83 +0,0 @@
20 -# Copyright 1999-2012 Gentoo Foundation
21 -# Distributed under the terms of the GNU General Public License v2
22 -# $Header: $
23 -
24 -EAPI="4"
25 -GCONF_DEBUG="no"
26 -GNOME2_LA_PUNT="yes"
27 -PYTHON_DEPEND="python? 2:2.5"
28 -
29 -inherit gnome2 python
30 -
31 -DESCRIPTION="Eye of GNOME plugins"
32 -HOMEPAGE="https://live.gnome.org/EyeOfGnome/Plugins"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE="+exif +flickr map +picasa +python"
38 -REQUIRED_USE="map? ( exif )"
39 -
40 -RDEPEND="
41 - >=dev-libs/glib-2.26:2
42 - >=dev-libs/libpeas-0.7.4
43 - >=media-gfx/eog-3.5.5
44 - x11-libs/gtk+:3
45 - exif? ( >=media-libs/libexif-0.6.16 )
46 - flickr? ( media-gfx/postr )
47 - map? (
48 - media-libs/libchamplain:0.12[gtk]
49 - >=media-libs/clutter-1.9.4:1.0
50 - >=media-libs/clutter-gtk-1.1.2:1.0 )
51 - picasa? ( >=dev-libs/libgdata-0.9.1 )
52 - python? (
53 - dev-libs/libpeas[gtk,python]
54 - dev-python/pygobject:3
55 - gnome-base/gsettings-desktop-schemas
56 - media-gfx/eog[introspection]
57 - x11-libs/gtk+:3[introspection]
58 - x11-libs/pango[introspection] )
59 -"
60 -DEPEND="${RDEPEND}
61 - >=dev-util/intltool-0.40
62 - sys-devel/gettext
63 - virtual/pkgconfig
64 -"
65 -
66 -pkg_setup() {
67 - if use python; then
68 - python_set_active_version 2
69 - python_pkg_setup
70 - fi
71 -}
72 -
73 -src_prepare() {
74 - gnome2_src_prepare
75 - use python && python_clean_py-compile_files
76 -}
77 -
78 -src_configure() {
79 - local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
80 - use exif && plugins="${plugins},exif-display"
81 - use flickr && plugins="${plugins},postr"
82 - use map && plugins="${plugins},map"
83 - use picasa && plugins="${plugins},postasa"
84 - use python && plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder"
85 - G2CONF="${G2CONF}
86 - $(use_enable python)
87 - --with-plugins=${plugins}"
88 - gnome2_src_configure
89 -}
90 -
91 -pkg_postinst() {
92 - gnome2_pkg_postinst
93 - if use python; then
94 - python_need_rebuild
95 - python_mod_optimize /usr/$(get_libdir)/eog/plugins
96 - fi
97 -}
98 -
99 -pkg_postrm() {
100 - gnome2_pkg_postrm
101 - use python && python_mod_cleanup /usr/$(get_libdir)/eog/plugins
102 -}