Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/tumbler/
Date: Sat, 08 Sep 2018 18:12:19
Message-Id: 1536429526.7db6884b2967bb041514a2eba3e3ecc78c5e741c.mgorny@gentoo
1 commit: 7db6884b2967bb041514a2eba3e3ecc78c5e741c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 8 17:58:46 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 8 17:58:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db6884b
7
8 xfce-extra/tumbler: Bump to 0.2.2
9
10 xfce-extra/tumbler/Manifest | 1 +
11 xfce-extra/tumbler/tumbler-0.2.2.ebuild | 57 +++++++++++++++++++++++++++++++++
12 2 files changed, 58 insertions(+)
13
14 diff --git a/xfce-extra/tumbler/Manifest b/xfce-extra/tumbler/Manifest
15 index 1f5c66ca577..ee13401d04d 100644
16 --- a/xfce-extra/tumbler/Manifest
17 +++ b/xfce-extra/tumbler/Manifest
18 @@ -1,2 +1,3 @@
19 DIST tumbler-0.2.0.tar.bz2 571300 BLAKE2B b4b923716897773febaff21c7d13fb8e4abfb36f9a0a02e4b777516ecd6170552d757057a228832924f4d8cb9f61380109ef52d0efaddcf69069ca5c0df4ae6c SHA512 54f83f904b32fcde5960f3343f8f4477bd30cd96a784aec5a3cb70aa2c9f924e833b2c0b429d608a36c75104d2689975d688358893127aed501f3cd8f24c280b
20 DIST tumbler-0.2.1.tar.bz2 577996 BLAKE2B fc1b9dbf9fee4453f6de5d4e901fac13e38534560230cb18e51c3325f648d51885081c5af182af2621f682cc22b0abb99a02ef45ef37a7e604249baa73eaacfc SHA512 c88595312e34534cb43d304d97a60886338d92997a7d0b5a8bb22d06dfb13d7a7445b148ba4af3766df24f6c87106a7f65758debf198e46d9fabf00049b13386
21 +DIST tumbler-0.2.2.tar.bz2 570523 BLAKE2B 963b8c9eaead60aa43e682670f8bb74df649d175539cd43bbbd74d0c76448b856c01362d75ea6805375447cfffa200f9ca2ca19ac5a4726ea6b5cea55b93a250 SHA512 6bbd9ef32a9c105fc614daab8f9b87eab71934c85d3caf8465672adb2def9c43ef8b962b1da214d8013e187ee523c39f081f1331bcefb3af6359a93272875a05
22
23 diff --git a/xfce-extra/tumbler/tumbler-0.2.2.ebuild b/xfce-extra/tumbler/tumbler-0.2.2.ebuild
24 new file mode 100644
25 index 00000000000..df0d29a98bf
26 --- /dev/null
27 +++ b/xfce-extra/tumbler/tumbler-0.2.2.ebuild
28 @@ -0,0 +1,57 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +DESCRIPTION="A thumbnail service for Thunar"
35 +HOMEPAGE="https://docs.xfce.org/xfce/thunar/start"
36 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
37 +
38 +LICENSE="GPL-2+"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
41 +IUSE="curl ffmpeg gstreamer jpeg odf pdf raw"
42 +
43 +COMMON_DEPEND=">=dev-libs/glib-2.26:2=
44 + media-libs/freetype:2=
45 + media-libs/libpng:0=
46 + >=sys-apps/dbus-1.6:=
47 + >=x11-libs/gdk-pixbuf-2.14:2=
48 + curl? ( >=net-misc/curl-7.25:= )
49 + ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.8:= )
50 + gstreamer? (
51 + media-libs/gstreamer:1.0
52 + media-libs/gst-plugins-base:1.0
53 + )
54 + jpeg? ( virtual/jpeg:0= )
55 + odf? ( >=gnome-extra/libgsf-1.14.20:= )
56 + pdf? ( >=app-text/poppler-0.12.4[cairo] )
57 + raw? ( >=media-libs/libopenraw-0.0.8:=[gtk] )"
58 +RDEPEND="${COMMON_DEPEND}
59 + >=xfce-base/thunar-1.4
60 + gstreamer? ( media-plugins/gst-plugins-meta:1.0 )"
61 +DEPEND="${COMMON_DEPEND}
62 + dev-util/gtk-doc-am
63 + dev-util/intltool
64 + sys-devel/gettext
65 + virtual/pkgconfig"
66 +
67 +src_configure() {
68 + local myconf=(
69 + $(use_enable curl cover-thumbnailer)
70 + $(use_enable jpeg jpeg-thumbnailer)
71 + $(use_enable ffmpeg ffmpeg-thumbnailer)
72 + $(use_enable gstreamer gstreamer-thumbnailer)
73 + $(use_enable odf odf-thumbnailer)
74 + $(use_enable pdf poppler-thumbnailer)
75 + $(use_enable raw raw-thumbnailer)
76 + )
77 +
78 + econf "${myconf[@]}"
79 +}
80 +
81 +src_install() {
82 + default
83 +
84 + find "${D}" -name '*.la' -delete || die
85 +}