Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/sushi: sushi-3.8.0.ebuild ChangeLog
Date: Thu, 28 Mar 2013 17:31:00
Message-Id: 20130328173055.55B472171D@flycatcher.gentoo.org
1 pacho 13/03/28 17:30:55
2
3 Modified: ChangeLog
4 Added: sushi-3.8.0.ebuild
5 Log:
6 Version bump for Gnome 3.8
7
8 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.13 gnome-extra/sushi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/sushi/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/sushi/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/sushi/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/sushi/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 2 Feb 2013 22:41:36 -0000 1.12
24 +++ ChangeLog 28 Mar 2013 17:30:55 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnome-extra/sushi
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/sushi/ChangeLog,v 1.12 2013/02/02 22:41:36 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/sushi/ChangeLog,v 1.13 2013/03/28 17:30:55 pacho Exp $
30 +
31 +*sushi-3.8.0 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Pacho Ramos <pacho@g.o> +sushi-3.8.0.ebuild:
34 + Version bump for Gnome 3.8
35
36 02 Feb 2013; Agostino Sarubbo <ago@g.o> sushi-3.6.1.ebuild:
37 Add ~arm, wrt bug #449220
38
39
40
41 1.1 gnome-extra/sushi/sushi-3.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/sushi/sushi-3.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/sushi/sushi-3.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sushi-3.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/sushi/sushi-3.8.0.ebuild,v 1.1 2013/03/28 17:30:55 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54
55 inherit gnome2
56
57 DESCRIPTION="A quick previewer for Nautilus, the GNOME file manager"
58 HOMEPAGE="http://git.gnome.org/browse/sushi"
59
60 LICENSE="GPL-2+"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="office"
64
65 # Optional app-office/unoconv support (OOo to pdf)
66 # freetype needed for font loader
67 # libX11 needed for sushi_create_foreign_window()
68 COMMON_DEPEND="
69 >=x11-libs/gdk-pixbuf-2.23[introspection]
70 >=dev-libs/gjs-1.34
71 >=dev-libs/glib-2.29.14:2
72 >=dev-libs/gobject-introspection-0.9.6
73 >=media-libs/clutter-1.11.4:1.0[introspection]
74 >=media-libs/clutter-gtk-1.0.1:1.0[introspection]
75 >=x11-libs/gtk+-3.4.0:3[introspection]
76
77 >=app-text/evince-3.0[introspection]
78 media-libs/freetype:2
79 media-libs/gstreamer:1.0[introspection]
80 media-libs/gst-plugins-base:1.0[introspection]
81 media-libs/clutter-gst:2.0[introspection]
82 media-libs/musicbrainz:5
83 net-libs/webkit-gtk:3[introspection]
84 x11-libs/gtksourceview:3.0[introspection]
85 x11-libs/libX11
86
87 office? ( app-office/unoconv )
88 "
89 DEPEND="${RDEPEND}
90 >=dev-util/intltool-0.40
91 >=sys-devel/gettext-0.17
92 virtual/pkgconfig
93 "
94 RDEPEND="${COMMON_DEPEND}
95 >=gnome-base/nautilus-3.1.90
96 x11-themes/gnome-icon-theme-symbolic
97 "
98
99 src_configure() {
100 G2CONF="${G2CONF}
101 UNOCONV=$(type -P false)
102 --disable-static"
103 if use office; then
104 G2CONF="${G2CONF} UNOCONV=$(type -P unoconv)"
105 fi
106 gnome2_src_configure
107 }