diff options
author | Mart Raudsepp <leio@gentoo.org> | 2019-06-21 00:05:36 +0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2019-06-21 00:27:07 +0300 |
commit | 02aa9ef037e97c8f630c6e592dcd330d3d5ddeaf (patch) | |
tree | 5fdadffdc3c2f3d3bc83508b1990ccc589b9de0a /media-plugins/gst-plugins-libnice | |
parent | media-plugins/gst-plugins-libpng: remove gstreamer 0.10 (diff) | |
download | gentoo-02aa9ef037e97c8f630c6e592dcd330d3d5ddeaf.tar.gz gentoo-02aa9ef037e97c8f630c6e592dcd330d3d5ddeaf.tar.bz2 gentoo-02aa9ef037e97c8f630c6e592dcd330d3d5ddeaf.zip |
media-plugins/gst-plugins-libnice: remove gstreamer 0.10
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'media-plugins/gst-plugins-libnice')
-rw-r--r-- | media-plugins/gst-plugins-libnice/files/gst-plugins-libnice-0.1.13-gstreamer.patch | 40 | ||||
-rw-r--r-- | media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.13.ebuild | 64 |
2 files changed, 0 insertions, 104 deletions
diff --git a/media-plugins/gst-plugins-libnice/files/gst-plugins-libnice-0.1.13-gstreamer.patch b/media-plugins/gst-plugins-libnice/files/gst-plugins-libnice-0.1.13-gstreamer.patch deleted file mode 100644 index 136d85456c40..000000000000 --- a/media-plugins/gst-plugins-libnice/files/gst-plugins-libnice-0.1.13-gstreamer.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 76ff4aee9fe963842dd17748d14c68552c5dcda3 Mon Sep 17 00:00:00 2001 -From: Timo Gurr <timo.gurr@gmail.com> -Date: Mon, 1 Jun 2015 16:10:16 +0200 -Subject: [PATCH] configure: Fix configure failure when building without - gstreamer support - -Error introduced in 20ea22e0a11a9bdfe4d8125b68083249b694338a, resulting in a -configure/build error when building without gstreamer: - -configure: error: conditional "HAVE_GST_CHECK" was never defined. -Usually this means the macro was only invoked conditionally. ---- - configure.ac | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 6031cec..64a571f 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -231,9 +231,6 @@ AS_IF([test "$with_gstreamer" != no], [ - [ - have_gst_check=no - ]) -- -- AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes) -- - ]) - - AS_IF([test "$with_gstreamer010" != no], [ -@@ -260,6 +257,7 @@ AC_SUBST(gstplugindir) - AC_SUBST(gstplugin010dir) - - AM_CONDITIONAL(WITH_GSTREAMER, test "$with_gstreamer" = yes) -+AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes) - AM_CONDITIONAL(WITH_GSTREAMER010, test "$with_gstreamer010" = yes) - - GUPNP_IGD_REQUIRED=0.2.4 --- -2.4.1 - diff --git a/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.13.ebuild b/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.13.ebuild deleted file mode 100644 index 3d7a8a40163d..000000000000 --- a/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.13.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils multilib-minimal toolchain-funcs - -DESCRIPTION="GStreamer plugin for ICE (RFC 5245) support" -HOMEPAGE="https://nice.freedesktop.org/wiki/" -MY_P=libnice-${PV} -SRC_URI="https://nice.freedesktop.org/releases/${MY_P}.tar.gz" - -LICENSE="|| ( MPL-1.1 LGPL-2.1 )" -SLOT="0.10" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" - -RDEPEND=" - ~net-libs/libnice-${PV}[${MULTILIB_USEDEP}] - media-libs/gstreamer:${SLOT}[${MULTILIB_USEDEP}] - media-libs/gst-plugins-base:${SLOT}[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND} - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] -" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - sed -e 's:$(top_builddir)/nice/libnice.la:$(NICE_LIBS):' \ - -i gst/Makefile.{am,in} || die "sed failed" - - # https://bugs.freedesktop.org/show_bug.cgi?id=90801 - epatch "${FILESDIR}"/${P}-gstreamer.patch - eautoreconf -} - -multilib_src_configure() { - # gupnp is not used in the gst plugin - ECONF_SOURCE=${S} \ - econf \ - --disable-static \ - --disable-static-plugins \ - --with-gstreamer-0.10 \ - --without-gstreamer \ - --disable-introspection \ - --disable-gupnp -} - -multilib_src_compile() { - emake -C gst \ - NICE_LIBS="$($(tc-getPKG_CONFIG) --libs-only-l nice)" -} - -multilib_src_test() { - : -} - -multilib_src_install() { - emake -C gst DESTDIR="${D}" install -} - -multilib_src_install_all() { - prune_libtool_files --modules -} |