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