Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/qmplay2/
Date: Wed, 31 Mar 2021 11:09:31
Message-Id: 1617188959.b9b38d4a9ecd37f38c397b088744ebcf1510618e.juippis@gentoo
1 commit: b9b38d4a9ecd37f38c397b088744ebcf1510618e
2 Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
3 AuthorDate: Sat Mar 27 13:58:00 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 31 11:09:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b38d4a
7
8 media-video/qmplay2: update live version
9
10 - add pipewire use flag
11
12 Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/20147
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 media-video/qmplay2/qmplay2-9999.ebuild | 22 ++++++----------------
17 1 file changed, 6 insertions(+), 16 deletions(-)
18
19 diff --git a/media-video/qmplay2/qmplay2-9999.ebuild b/media-video/qmplay2/qmplay2-9999.ebuild
20 index 264d28c79f2..b626780caa0 100644
21 --- a/media-video/qmplay2/qmplay2-9999.ebuild
22 +++ b/media-video/qmplay2/qmplay2-9999.ebuild
23 @@ -1,9 +1,9 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 +# Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=7
29
30 -inherit cmake xdg-utils
31 +inherit cmake xdg
32
33 DESCRIPTION="A Qt-based video player, which can play most formats and codecs"
34 HOMEPAGE="https://github.com/zaps166/QMPlay2"
35 @@ -21,11 +21,11 @@ LICENSE="LGPL-3"
36 SLOT="0"
37
38 IUSE="avdevice +audiofilters +alsa cdio cuvid dbus extensions
39 - gme inputs libass modplug notifications opengl portaudio
40 + gme inputs libass modplug notifications opengl pipewire portaudio
41 pulseaudio sid shaders vaapi vdpau +videofilters visualizations vulkan xv"
42
43 REQUIRED_USE="
44 - audiofilters? ( || ( alsa portaudio pulseaudio ) )
45 + audiofilters? ( || ( alsa pipewire portaudio pulseaudio ) )
46 extensions? ( dbus )
47 shaders? ( vulkan )"
48
49 @@ -49,6 +49,7 @@ RDEPEND="
50 gme? ( media-libs/game-music-emu )
51 libass? ( media-libs/libass )
52 opengl? ( virtual/opengl )
53 + pipewire? ( media-video/pipewire )
54 portaudio? ( media-libs/portaudio )
55 pulseaudio? ( media-sound/pulseaudio )
56 sid? ( media-libs/libsidplayfp )
57 @@ -108,6 +109,7 @@ src_configure() {
58 -DUSE_CUVID=$(usex cuvid)
59 -DUSE_INPUTS=$(usex inputs)
60 -DUSE_MODPLUG=$(usex modplug)
61 + -DUSE_PIPEWIRE=$(usex pipewire)
62 -DUSE_PORTAUDIO=$(usex portaudio)
63 -DUSE_PULSEAUDIO=$(usex pulseaudio)
64 -DUSE_VIDEOFILTERS=$(usex videofilters)
65 @@ -135,15 +137,3 @@ src_configure() {
66
67 cmake_src_configure
68 }
69 -
70 -pkg_postinst() {
71 - xdg_icon_cache_update
72 - xdg_mimeinfo_database_update
73 - xdg_desktop_database_update
74 -}
75 -
76 -pkg_postrm() {
77 - xdg_icon_cache_update
78 - xdg_mimeinfo_database_update
79 - xdg_desktop_database_update
80 -}