Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: media-plugins/gst-plugins-qt5/
Date: Thu, 12 May 2022 09:14:56
Message-Id: 1652269162.9a47329558d30c96b79d089068cbaa08cbdda6f5.andrewammerlaan@gentoo
1 commit: 9a47329558d30c96b79d089068cbaa08cbdda6f5
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Wed May 11 11:27:34 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 11:39:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9a473295
7
8 media-plugins/gst-plugins-qt5: add 1.20.1
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 media-plugins/gst-plugins-qt5/Manifest | 1 +
13 .../gst-plugins-qt5/gst-plugins-qt5-1.20.1.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/media-plugins/gst-plugins-qt5/Manifest b/media-plugins/gst-plugins-qt5/Manifest
17 index 340a5e1c7..403e0b24d 100644
18 --- a/media-plugins/gst-plugins-qt5/Manifest
19 +++ b/media-plugins/gst-plugins-qt5/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gst-plugins-good-1.18.4.tar.xz 3277572 BLAKE2B 8acfb975d19eabc681184d0096328051a9a02e5f849599dbad1233a0e9254e1a2d2bef75d8afdc779a7ca01a71b15d1e83a843749c0ef5f7ab2b5818067ab898 SHA512 764c66383c93e57f9c5e7742002013e07e7b25750d6974d6c07744433e8ceb7570e829e68278e2bc5214f77158311a6b3bfb013d615cf66205d8d7a9e2d54b86
22 DIST gst-plugins-good-1.18.6.tar.xz 3296552 BLAKE2B 551ae9cf9beb512ae418db20cd50dc8826ed60421a40d6c9c9fc558f32c9db2a9bada309a8075306542c53382ecb728dac3dd6252d1efc7255cffde0bea35895 SHA512 e0be5f1eaffe65d7871f23e42645fa4cee30953d16d54c4f4707c094859659cff1e4609b086afebaf08777b6d01dcba4f4b2b338e722bf729e9ed0482a2417a5
23 +DIST gst-plugins-good-1.20.1.tar.xz 3415220 BLAKE2B 62a0e0b4d60412350c3aad692e7b3d0dd5c7ebed098e21e7d4d7c599ffec9be5795c88cbdece0b219d1aad607ad1a0209a376a8f3543793c9c905cb1401e92c4 SHA512 6e56f6290465da03bfe162228829e51091896b2c5fe9d1d0718f663a3ab14edf5c790b37998a783981b9c77034252e7dee9fec5136f92ced44c4898e2fbd402e
24
25 diff --git a/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.20.1.ebuild b/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.20.1.ebuild
26 new file mode 100644
27 index 000000000..b6c1d6838
28 --- /dev/null
29 +++ b/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.20.1.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 2021-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +GST_ORG_MODULE=gst-plugins-good
37 +
38 +inherit gstreamer-meson qmake-utils
39 +
40 +DESCRIPTION="Qt5 QML video sink plugin for GStreamer"
41 +KEYWORDS="~amd64"
42 +IUSE="+egl wayland +X"
43 +
44 +REQUIRED_USE="
45 + wayland? ( egl )
46 +"
47 +
48 +RDEPEND="
49 + >=media-libs/gst-plugins-base-${PV}:${SLOT}[egl?,opengl,wayland?,X?]
50 + media-libs/mesa[egl(+)?,X?]
51 + dev-qt/qtcore:5
52 + dev-qt/qtdeclarative:5
53 + dev-qt/qtgui:5
54 + egl? ( dev-qt/qtgui:5[eglfs] )
55 + wayland? ( dev-qt/qtwayland:5 )
56 + X? ( dev-qt/qtx11extras:5 )
57 +"
58 +DEPEND="${RDEPEND}"
59 +
60 +GST_PLUGINS_BUILD_DIR="qt"
61 +
62 +src_prepare() {
63 + export PATH="${PATH}:$(qt5_get_bindir)"
64 + default
65 +}