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