summaryrefslogtreecommitdiff
path: root/media-plugins/gst-plugins-faad
diff options
context:
space:
mode:
Diffstat (limited to 'media-plugins/gst-plugins-faad')
-rw-r--r--media-plugins/gst-plugins-faad/Manifest3
-rw-r--r--media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch38
-rw-r--r--media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild19
3 files changed, 0 insertions, 60 deletions
diff --git a/media-plugins/gst-plugins-faad/Manifest b/media-plugins/gst-plugins-faad/Manifest
index 0c6cfade8b3d..50ea08c5eccd 100644
--- a/media-plugins/gst-plugins-faad/Manifest
+++ b/media-plugins/gst-plugins-faad/Manifest
@@ -1,6 +1,3 @@
-AUX gst-plugins-faad-1.4.5-version-check.patch 1428 BLAKE2B 5ac173f28ffa289913c9cb6a92209efb56cd94ee7c43e6ebe9124f821c3b67ab912d1abe2b68f1165a117c5c48a36dcdffc74d5922e2c79079f5a5d34240ee04 SHA512 50d1b170cc8ed01dd8eb10f7bf55d5826ba830be2296767fe050e2e1320b2c4b953db46148d4d257abd911f85b2057d0ca35ecf1f73fd54b6a71ebd3b037c73c
-DIST gst-plugins-bad-0.10.23.tar.xz 3155044 BLAKE2B 86ed955fb5c73f2145b8f8ed2daaeffd9975362e81c3ca911be00d18f6b6d975381651071eb54514ef94a931f1fc89e673dc8c1d68e10de132bbe51accb6d165 SHA512 6437dd12707ef29651f4014b54612cf2a3a42ed4e05a1c5f4a432d80e27efd2abc0df891ebcfdc9e7b2cf9f71a15b88e48b3aa6db24a178ed6de3b1bdf4c3dc4
DIST gst-plugins-bad-1.14.3.tar.xz 4678316 BLAKE2B b37d90e04a6bdb01e4f512df67e00790979e4b71fa6730092b4c16dbaf005cf94e09a454ed6e962faa3aaef02c2b811ad1899c3c8153b4ab3bf6d9b5f62998cf SHA512 3e92b33b43181d76bf206496c2fe0f84042c486f854f4fdba7efedc3489874944cef00eb2fd9fd7056d749be17c2b237caffc32800d7063615b30bac7226fbb7
-EBUILD gst-plugins-faad-0.10.23-r2.ebuild 491 BLAKE2B aa9f09d4174849650d316c19018779d87f078830d9ee5a94f0ef3c8031debf135cf90c06d46b8d4d97ef77d910d80e3496d4e70358d90414326020eb59198335 SHA512 921f66afbb23c737d62338c425952835bd7fad9572d2638a06baddc54596323e7a059b1330001f42a875b5263baa1e9bc591818120b00fec49e216e915664bb0
EBUILD gst-plugins-faad-1.14.3.ebuild 383 BLAKE2B b15cae1004f230ae03cbe4c9e6a21d67816857435382d2bbc1351f7553d1da4720d0c03fde762706e743817ac4c7440e3d7b3b4da23a750a4dd96aab609c3052 SHA512 c8edb29487e0de0adf6659d8188deab21261b330a234ecbb7f67c61400dc00bfeac02d5b109df2d60be9732ee84cc28a2c5d22ae685a4f466d1a8e47fb54835c
MISC metadata.xml 262 BLAKE2B 16a4a230ef5481afde96333e9555bee1771ced412b11eb982c633709dec57b274f78082ba3fe842f7d3406a688662d34792fff304027833286b30652e9982719 SHA512 608f0a17d576a3b23a6921272eb449a6efed76b3c4b3fdf8737b2d499b56d109186c2883c06e5c843799d2fb1606f3066c43759b40f9d7cf58b6a674c38dd0e0
diff --git a/media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch b/media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch
deleted file mode 100644
index fdcdc7554482..000000000000
--- a/media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From bde0f119097117cf0256e450af4267a47782260b Mon Sep 17 00:00:00 2001
-From: Wim Taymans <wtaymans@redhat.com>
-Date: Wed, 13 May 2015 16:23:26 +0200
-Subject: [PATCH] fix faad2 version check
-
-On fedora 22, the output of cpp inserts extra debug comments, which
-makes our regexp for the faad2 version check fail. This in turn causes
-it to compile with the wrong arguments passed which then causes stack
-corruption and crashes.
-
-Fix this by only checking for the version (which should be by itself on
-a single line). This is potentially less safe, it might be possible that
-a similar string would appear in a later version in the header file.
-
-Fixes https://bugzilla.gnome.org/show_bug.cgi?id=748571
----
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 4e2823e..c56295e 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -2050,9 +2050,9 @@ AG_GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
- AC_MSG_CHECKING([Checking FAAD2 version in $faad_hdr])
- for minor in 10 9 8 7 6 5 0; do
- if test x$faad2_minor_version = "x"; then
-- AC_EGREP_CPP([GST_CHECK_FAAD_VERSION \"2\.$minor\"], [
-+ AC_EGREP_CPP([\"2\.$minor\"$], [
- #include <$faad_hdr>
-- GST_CHECK_FAAD_VERSION FAAD2_VERSION
-+ FAAD2_VERSION
- ], [
- faad2_minor_version=$minor
- ])
---
-2.4.1
-
diff --git a/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild b/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild
deleted file mode 100644
index 810287e0cc73..000000000000
--- a/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-GST_ORG_MODULE=gst-plugins-bad
-inherit autotools eutils gstreamer
-
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE=""
-
-RDEPEND=">=media-libs/faad2-2.7-r3[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- # From upstream git, fixes corrupt build with gcc-5.1
- epatch "${FILESDIR}"/${PN}-1.4.5-version-check.patch
- eautoreconf
-}