diff options
author | brahmajit das <listout@protonmail.com> | 2023-01-14 15:31:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-14 15:48:28 +0000 |
commit | 94731da091b95bec074fecea236a1864e7d62ac0 (patch) | |
tree | 1bf4e58724d17cca35fd3f798823e47ba27a0e52 /media-libs/gst-rtsp-server | |
parent | media-libs/gstreamer-editing-services: add 1.20.5 (diff) | |
download | gentoo-94731da091b95bec074fecea236a1864e7d62ac0.tar.gz gentoo-94731da091b95bec074fecea236a1864e7d62ac0.tar.bz2 gentoo-94731da091b95bec074fecea236a1864e7d62ac0.zip |
media-libs/gst-rtsp-server: add 1.20.5
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: brahmajit das <listout@protonmail.com>
Diffstat (limited to 'media-libs/gst-rtsp-server')
-rw-r--r-- | media-libs/gst-rtsp-server/Manifest | 1 | ||||
-rw-r--r-- | media-libs/gst-rtsp-server/gst-rtsp-server-1.20.5.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/media-libs/gst-rtsp-server/Manifest b/media-libs/gst-rtsp-server/Manifest index 4e48ce669288..c5cbd866fe7f 100644 --- a/media-libs/gst-rtsp-server/Manifest +++ b/media-libs/gst-rtsp-server/Manifest @@ -1,2 +1,3 @@ DIST gst-rtsp-server-1.20.3.tar.xz 362348 BLAKE2B 45d5ff58d76b9b83baa6e5956976e1fdc10dae3200d30a877a26ddafda4f919ecaeca85fceec6fb3b7802303d152087d3f5813f6e3bf36a941a0c46fceeb1292 SHA512 15baf83d77d57d1e2517feffad68b4508e7a959863b5e6fa3d0f564c81786df8d3c1e57d8b8a9f9b623e19212feb137dfe89d8e385f518c86f205c4461802007 DIST gst-rtsp-server-1.20.4.tar.xz 366208 BLAKE2B 0fec083dd18a2979a311dc69b54a580520e27fb11e35e529d2e1be2823c130ce6b2d27a715d67617fe04d81641e31d7fe8e3f6c38a3e17c4d4acee1415f33d60 SHA512 85952e5d8febb1df1a558a55bb3840a9574f5cbb83e777072b556b96a62dfaf83ccc9e3ed38604f07b7ff797da2b609d7ed9422f3b01faaf783709c012803b9a +DIST gst-rtsp-server-1.20.5.tar.xz 368960 BLAKE2B f4e3bb1f7df79a631d39b459c43000a2185d81754fba48ef5e44c1786a2b67f03f4b9fce7c37c6301dd282e7784f3ff1ccb53b947719417c87adf8ed1cefd01d SHA512 826259c13610d61d07c5052d7601b3e6814604e81f47c0e5c0023ccc3b89da612f6d6e6c931b7e866ebc22fb4c4038734f8940b2573eca00a9185bd979256a15 diff --git a/media-libs/gst-rtsp-server/gst-rtsp-server-1.20.5.ebuild b/media-libs/gst-rtsp-server/gst-rtsp-server-1.20.5.ebuild new file mode 100644 index 000000000000..03591f7468a1 --- /dev/null +++ b/media-libs/gst-rtsp-server/gst-rtsp-server-1.20.5.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit gstreamer-meson + +DESCRIPTION="A GStreamer based RTSP server" +HOMEPAGE="https://gstreamer.freedesktop.org/modules/gst-rtsp-server.html" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~x86" +IUSE="examples +introspection static-libs" + +# gst-plugins-base for many used elements and API +# gst-plugins-good for rtprtxsend and rtpbin elements, maybe more +# gst-plugins-srtp for srtpenc and srtpdec elements +RDEPEND=" + >=media-libs/gstreamer-${PV}:${SLOT}[introspection?,${MULTILIB_USEDEP}] + >=media-libs/gst-plugins-base-${PV}:${SLOT}[introspection?,${MULTILIB_USEDEP}] + >=media-libs/gst-plugins-good-${PV}:${SLOT}[${MULTILIB_USEDEP}] + >=media-plugins/gst-plugins-srtp-${PV}:${SLOT}[${MULTILIB_USEDEP}] + introspection? ( >=dev-libs/gobject-introspection-1.31.1:= ) +" +DEPEND="${RDEPEND}" +BDEPEND="" + +multilib_src_configure() { + local emesonargs=( + -Dintrospection=$(multilib_native_usex introspection enabled disabled) + ) + + gstreamer_multilib_src_configure +} + +multilib_src_install_all() { + einstalldocs + + if use examples ; then + docinto examples + dodoc "${S}"/examples/*.c + fi +} |