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: media-video/parole/
Date: Thu, 04 Apr 2019 14:27:56
Message-Id: 1554387712.191e57b5ca93c514a249f12ef71808306393519d.mgorny@gentoo
1 commit: 191e57b5ca93c514a249f12ef71808306393519d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 4 14:21:52 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 4 14:21:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191e57b5
7
8 media-video/parole: Bump to 1.0.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 media-video/parole/Manifest | 1 +
13 media-video/parole/parole-1.0.2.ebuild | 64 ++++++++++++++++++++++++++++++++++
14 2 files changed, 65 insertions(+)
15
16 diff --git a/media-video/parole/Manifest b/media-video/parole/Manifest
17 index 5c68972a641..3a1f794053d 100644
18 --- a/media-video/parole/Manifest
19 +++ b/media-video/parole/Manifest
20 @@ -1,2 +1,3 @@
21 DIST parole-1.0.0.tar.bz2 900499 BLAKE2B d6a1eb21846426781a712f33b7cf8f412b17b9a3e02b1ef15b6ff742687efc70a3e3f0ae8124ed2226a1cf00022c7ef0650c8e1c1b6e3279b111891e8c3e651e SHA512 0581fed93d2a09a3d9ec9cf1bb68a298ccd47676b22d0824495136ee9d785290b8465af8c12b5ecd34a46936f7433bf96dd559e6252a8f1af46c0e2f9256c864
22 DIST parole-1.0.1.tar.bz2 903754 BLAKE2B 2bd8a8892c04bc145d7ba0bc08c29ad1f9c4507cce533d554952553e46c408e9f293a19820790541d0a494052ac6024d415bfef4864fc09b8d851664688ace3e SHA512 026ece62e6a8175976e7ce218edbd6955a0cdb5074996adad5bed3e536f90108e4d1106f22edcb06d213fb09dd47b04f81bff94f4534710b61f0f53cb0395f72
23 +DIST parole-1.0.2.tar.bz2 915511 BLAKE2B e6fa116cae5c015a90b4a1d04df70f006ad59dfdb5d849b8ae8c3fdc0665e48790739c82bdb7c35c70f34548b9bee3dcac62f29e28562663d46b10a3a080f13d SHA512 d7e989af7f9dab14080e62bd656a2858d8536a056ba82b5d5ac7d26a7d898f478b74c1ba4371779624691b7f42b695580ad53cfb15da0a4dc209d7570c12a66d
24
25 diff --git a/media-video/parole/parole-1.0.2.ebuild b/media-video/parole/parole-1.0.2.ebuild
26 new file mode 100644
27 index 00000000000..f14dfea94f9
28 --- /dev/null
29 +++ b/media-video/parole/parole-1.0.2.ebuild
30 @@ -0,0 +1,64 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit gnome2-utils xdg-utils
37 +
38 +DESCRIPTION="A simple Xfce4 media player using GStreamer"
39 +HOMEPAGE="https://docs.xfce.org/apps/parole/start"
40 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~mips ~x86"
45 +IUSE="libnotify taglib"
46 +
47 +COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:=
48 + >=dev-libs/glib-2.32:2=
49 + media-libs/gstreamer:1.0=
50 + media-libs/gst-plugins-base:1.0=
51 + sys-apps/dbus:0=
52 + >=x11-libs/gtk+-3.20:3=
53 + x11-libs/libX11:0=
54 + >=xfce-base/libxfce4ui-4.11:0=[gtk3(+)]
55 + >=xfce-base/libxfce4util-4.11:0=
56 + >=xfce-base/xfconf-4.10:0=
57 + libnotify? ( >=x11-libs/libnotify-0.7:0= )
58 + taglib? ( >=media-libs/taglib-1.6:0= )"
59 +RDEPEND="${COMMON_DEPEND}
60 + media-plugins/gst-plugins-meta:1.0"
61 +DEPEND="${COMMON_DEPEND}
62 + dev-util/glib-utils
63 + dev-util/intltool
64 + sys-devel/gettext
65 + virtual/pkgconfig
66 + x11-base/xorg-proto"
67 +
68 +DOCS=( AUTHORS ChangeLog README THANKS TODO )
69 +
70 +src_configure() {
71 + local myconf=(
72 + # clutter backend does not work with new GTK+3 versions
73 + --disable-clutter
74 + $(use_enable taglib)
75 + $(use_enable libnotify notify-plugin)
76 + )
77 +
78 + econf "${myconf[@]}"
79 +}
80 +
81 +src_install() {
82 + default
83 + find "${D}" -name '*.la' -delete || die
84 +}
85 +
86 +pkg_postinst() {
87 + xdg_desktop_database_update
88 + gnome2_icon_cache_update
89 +}
90 +
91 +pkg_postrm() {
92 + xdg_desktop_database_update
93 + gnome2_icon_cache_update
94 +}