diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-09-16 16:17:59 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-09-17 12:20:09 +0200 |
commit | 114a3100cd4369f6d81c85aa69905bcbad2eb292 (patch) | |
tree | b80966e79d9184125871ea9dd7d60a8f8151727e /media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.22.ebuild | |
parent | dev-python/pydantic-core: Keyword 2.23.3 mips, #909772 (diff) | |
download | gentoo-114a3100cd4369f6d81c85aa69905bcbad2eb292.tar.gz gentoo-114a3100cd4369f6d81c85aa69905bcbad2eb292.tar.bz2 gentoo-114a3100cd4369f6d81c85aa69905bcbad2eb292.zip |
media-plugins/gst-plugins-libnice: add 0.1.22
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.22.ebuild')
-rw-r--r-- | media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.22.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.22.ebuild b/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.22.ebuild new file mode 100644 index 000000000000..e38e84cea764 --- /dev/null +++ b/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.22.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit meson-multilib + +DESCRIPTION="GStreamer plugin for ICE (RFC 5245) support" +HOMEPAGE="https://libnice.freedesktop.org/" +MY_P=libnice-${PV} +SRC_URI="https://libnice.freedesktop.org/releases/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="|| ( MPL-1.1 LGPL-2.1 )" +SLOT="1.0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND=" + ~net-libs/libnice-${PV}[${MULTILIB_USEDEP}] + media-libs/gstreamer:${SLOT}[${MULTILIB_USEDEP}] + media-libs/gst-plugins-base:${SLOT}[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-0.1.21-use-installed-libnice.patch +) + +multilib_src_configure() { + # gnutls vs openssl left intentionally automagic here - the chosen USE flag configuration of libnice will ensure + # one of them is present, configure will be happy, but gstreamer bits don't use it, so it doesn't matter. + # gupnp is not used in the gst plugin. + local emesonargs=( + -Dgstreamer=enabled + -Dcrypto-library=auto + -Dintrospection=disabled + -Dgupnp=disabled + ) + meson_src_configure +} |