Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/sushi/
Date: Sat, 25 Jun 2016 19:13:35
Message-Id: 1466881999.a84bc2eaf6593453f2c5da21a0c95ada196a8d54.pacho@gentoo
1 commit: a84bc2eaf6593453f2c5da21a0c95ada196a8d54
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 19:12:50 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 19:13:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84bc2ea
7
8 gnome-extra/sushi: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 gnome-extra/sushi/Manifest | 1 +
13 gnome-extra/sushi/sushi-3.20.0.ebuild | 51 +++++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/gnome-extra/sushi/Manifest b/gnome-extra/sushi/Manifest
17 index a822667..575893b 100644
18 --- a/gnome-extra/sushi/Manifest
19 +++ b/gnome-extra/sushi/Manifest
20 @@ -1 +1,2 @@
21 DIST sushi-3.18.0.tar.xz 294676 SHA256 7f4df92be950bf23aff28da49ce108766dd21a88efc14a9d0807e10225608e9c SHA512 9243486a10302f312c45e39496803d74d00d2121b80e813cf4c8c01a25c14dfbc0fba72cdcc6b2d72127c1c15d8415ecaa4ae0b7ee892c69f1dea9407cbaaf61 WHIRLPOOL ac9c13d8ce47c35d53b09d6a187fc44eb55630bcf396682ed94391b4a9874f65fed86b36296044660acbb92330bf05e8e66af6e338db666691dced92df18c7cc
22 +DIST sushi-3.20.0.tar.xz 297568 SHA256 6e729c789e9e7f02505e25d4ac6cfed47e676366f0942fca740094f7fe9eae9e SHA512 3b6c0103458c7c646e61d0733707452ad1e63f2afc48cfaf66625685e4c6ef610e5569f0f888951d0f790804b06c8c15022abc7c1a3b3676f1fe4955fa55c5ab WHIRLPOOL a9d803257fd75235b7c94a2f5ab81c99a36d7f1340712474b4eaf94a8f1b4fb91f81a960a22a5fafc460d3b06f7e9c261accc2f42043e0a26efdc92bd1accf84
23
24 diff --git a/gnome-extra/sushi/sushi-3.20.0.ebuild b/gnome-extra/sushi/sushi-3.20.0.ebuild
25 new file mode 100644
26 index 0000000..7250878
27 --- /dev/null
28 +++ b/gnome-extra/sushi/sushi-3.20.0.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="A quick previewer for Nautilus, the GNOME file manager"
38 +HOMEPAGE="https://git.gnome.org/browse/sushi"
39 +
40 +LICENSE="GPL-2+"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="office"
44 +
45 +# Optional app-office/unoconv support (OOo to pdf)
46 +# freetype needed for font loader
47 +# libX11 needed for sushi_create_foreign_window()
48 +COMMON_DEPEND="
49 + >=x11-libs/gdk-pixbuf-2.23[introspection]
50 + >=dev-libs/gjs-1.40
51 + >=dev-libs/glib-2.29.14:2
52 + >=dev-libs/gobject-introspection-0.9.6:=
53 + >=media-libs/clutter-1.11.4:1.0[introspection]
54 + >=media-libs/clutter-gtk-1.0.1:1.0[introspection]
55 + >=x11-libs/gtk+-3.13.2:3[introspection]
56 +
57 + >=app-text/evince-3.0[introspection]
58 + media-libs/freetype:2
59 + media-libs/gstreamer:1.0[introspection]
60 + media-libs/gst-plugins-base:1.0[introspection]
61 + >=media-libs/harfbuzz-0.9.9:=
62 + media-libs/clutter-gst:3.0[introspection]
63 + media-libs/musicbrainz:5
64 + net-libs/webkit-gtk:4[introspection]
65 + x11-libs/gtksourceview:3.0[introspection]
66 + x11-libs/libX11
67 +
68 + office? ( app-office/unoconv )
69 +"
70 +DEPEND="${RDEPEND}
71 + >=dev-util/intltool-0.40
72 + virtual/pkgconfig
73 +"
74 +RDEPEND="${COMMON_DEPEND}
75 + >=gnome-base/nautilus-3.1.90
76 +"
77 +
78 +src_configure() {
79 + gnome2_src_configure --disable-static
80 +}