Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/eog-plugins: eog-plugins-3.12.1.ebuild ChangeLog
Date: Sun, 27 Apr 2014 17:27:49
Message-Id: 20140427172746.24A4A2004B@flycatcher.gentoo.org
1 eva 14/04/27 17:27:46
2
3 Modified: ChangeLog
4 Added: eog-plugins-3.12.1.ebuild
5 Log:
6 Version bump for Gnome 3.12.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.16 media-gfx/eog-plugins/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/eog-plugins/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/eog-plugins/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/eog-plugins/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 18 Apr 2014 11:00:46 -0000 1.15
24 +++ ChangeLog 27 Apr 2014 17:27:45 -0000 1.16
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/eog-plugins
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/ChangeLog,v 1.15 2014/04/18 11:00:46 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/ChangeLog,v 1.16 2014/04/27 17:27:45 eva Exp $
30 +
31 +*eog-plugins-3.12.1 (27 Apr 2014)
32 +
33 + 27 Apr 2014; Gilles Dartiguelongue <eva@g.o>
34 + +eog-plugins-3.12.1.ebuild:
35 + Version bump for Gnome 3.12.
36
37 18 Apr 2014; Pacho Ramos <pacho@g.o> -eog-plugins-3.8.1.ebuild:
38 Drop old
39
40
41
42 1.1 media-gfx/eog-plugins/eog-plugins-3.12.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/eog-plugins/eog-plugins-3.12.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/eog-plugins/eog-plugins-3.12.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eog-plugins-3.12.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/eog-plugins-3.12.1.ebuild,v 1.1 2014/04/27 17:27:45 eva Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="no"
55 GNOME2_LA_PUNT="yes"
56 PYTHON_COMPAT=( python{3_2,3_3} )
57
58 inherit gnome2 python-single-r1
59
60 DESCRIPTION="Eye of GNOME plugins"
61 HOMEPAGE="https://live.gnome.org/EyeOfGnome/Plugins"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="+exif +flickr map +picasa +python"
67 REQUIRED_USE="
68 map? ( exif )
69 python? ( ${PYTHON_REQUIRED_USE} )"
70
71 RDEPEND="
72 >=dev-libs/glib-2.32:2
73 >=dev-libs/libpeas-0.7.4:=
74 >=media-gfx/eog-3.11.4
75 >=x11-libs/gtk+-3.3.8:3
76 exif? ( >=media-libs/libexif-0.6.16 )
77 flickr? ( media-gfx/postr )
78 map? (
79 media-libs/libchamplain:0.12[gtk]
80 >=media-libs/clutter-1.9.4:1.0
81 >=media-libs/clutter-gtk-1.1.2:1.0 )
82 picasa? ( >=dev-libs/libgdata-0.9.1:= )
83 python? (
84 ${PYTHON_DEPS}
85 dev-libs/libpeas:=[gtk,python,${PYTHON_USEDEP}]
86 dev-python/pygobject:3[${PYTHON_USEDEP}]
87 gnome-base/gsettings-desktop-schemas
88 media-gfx/eog[introspection]
89 x11-libs/gtk+:3[introspection]
90 x11-libs/pango[introspection] )
91 "
92 DEPEND="${RDEPEND}
93 >=dev-util/intltool-0.40
94 sys-devel/gettext
95 virtual/pkgconfig
96 "
97
98 pkg_setup() {
99 use python && python-single-r1_pkg_setup
100 }
101
102 src_configure() {
103 local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
104 use exif && plugins="${plugins},exif-display"
105 use flickr && plugins="${plugins},postr"
106 use map && plugins="${plugins},map"
107 use picasa && plugins="${plugins},postasa"
108 use python && plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder"
109 gnome2_src_configure \
110 $(use_enable python) \
111 --with-plugins=${plugins}
112 }