summaryrefslogtreecommitdiff
path: root/media-plugins/gst-plugins-gl
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-06-22 11:30:24 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-06-22 11:30:24 +0100
commitd56d144655e3785864da43c9acb6c228ef9360ae (patch)
treeb769b599a558483f82e9a057c41f1edd29626dd1 /media-plugins/gst-plugins-gl
parentfab849d1daed0ba7f2ac497d07985c3dbb692543 (diff)
gentoo resync : 22.06.2019
Diffstat (limited to 'media-plugins/gst-plugins-gl')
-rw-r--r--media-plugins/gst-plugins-gl/Manifest4
-rw-r--r--media-plugins/gst-plugins-gl/files/gst-plugins-gl-0.10.3-jpeg-check.patch37
-rw-r--r--media-plugins/gst-plugins-gl/gst-plugins-gl-0.10.3-r1.ebuild60
-rw-r--r--media-plugins/gst-plugins-gl/metadata.xml12
4 files changed, 0 insertions, 113 deletions
diff --git a/media-plugins/gst-plugins-gl/Manifest b/media-plugins/gst-plugins-gl/Manifest
deleted file mode 100644
index eaf125bb9f16..000000000000
--- a/media-plugins/gst-plugins-gl/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX gst-plugins-gl-0.10.3-jpeg-check.patch 1116 BLAKE2B 86b546c9de80bb1e2fc84e19f0bdf7551cf16af559f268bc6edd06e1bf0c6cf5b5cad84702ce77e376c1d622ab8000cdfc84e839537aba6d4cd7c626cb03bd74 SHA512 a55bc8bee308aff0b4c823dd551733aa511fc678b6911dc498720ff58562495b0af5027ea5f54e0587fd6a08d49dfad99821486aa70570dd89348848d16eb8bd
-DIST gst-plugins-gl-0.10.3.tar.gz 1005557 BLAKE2B d117fcce37ace72ea7db91993f54c91dd1215a6d3616945b7e17dafe279997764fc1dc9382af1befaa8a5aa9318ae4a38970808eceb4e47e11a68deffbe4b775 SHA512 d42bc537ee94aab2c794a1886c17cc7eb41b89995a086da9a1f53f909f2bb93e95e940d397627589c2e2edd8d4b074736fab70fafda6e26105bb078a3ed7725a
-EBUILD gst-plugins-gl-0.10.3-r1.ebuild 1443 BLAKE2B 7920e0582177d2af075e118e842e0f36b8ffe3a5ba6364d5438197e6225bfbd11b27b3797e22a3dbb470a78be385b3f0ed1b39d54ebc05d74e81c41c5df81d70 SHA512 53693495c9a74652d5fa627f1826b69efe259908bab289a4cd05405256f760955bc312fbba4f3342d9ce24e9add609af92a32153bcdd7e14a6a6b1b04fbca2f1
-MISC metadata.xml 381 BLAKE2B e0b30192203d4d6576055d0917c8fb2fcf1a0c490b84e0ae7e5c0a98f4804eed78961795542de528c04010af2549b523d9d8cde58896f23783c8f8611388b638 SHA512 5cde3eaa58d6328770eff9564145d08ca11526f1e1ecefaaaa6eb8c242fad4ad1e369c055d17ab5939814ff985cf1c9cc8a281a884110cb16c41e32ee9df4a7b
diff --git a/media-plugins/gst-plugins-gl/files/gst-plugins-gl-0.10.3-jpeg-check.patch b/media-plugins/gst-plugins-gl/files/gst-plugins-gl-0.10.3-jpeg-check.patch
deleted file mode 100644
index 6092d3a1e980..000000000000
--- a/media-plugins/gst-plugins-gl/files/gst-plugins-gl-0.10.3-jpeg-check.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From d970fc512ecef1b78418156dba34cf6e77e41f94 Mon Sep 17 00:00:00 2001
-From: Alessandro Decina <alessandro.d@gmail.com>
-Date: Sat, 28 Dec 2013 15:10:09 +0100
-Subject: configure: fix libjpeg check
-
-We were setting HAVE_JPEG=no JPEG_LIBS=-ljpeg if libjpeg wasn't found. Unset
-JPEG_LIBS too so that linking doesn't fail.
-
-diff --git a/configure.ac b/configure.ac
-index 6ccb1aa..c4e8e9d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -862,12 +862,18 @@ AC_CHECK_LIB(jpeg-mmx, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
- JPEG_LIBS="$LIBS -ljpeg-mmx"
- LIBS="$OLD_LIBS"
- if test x$HAVE_JPEG != xyes; then
-- AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
- JPEG_LIBS="-ljpeg"
-- AC_DEFINE(HAVE_JPEG, [1] , [Use libjpeg])
-+ AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
-+fi
-+
-+if test x$HAVE_JPEG = xyes; then
-+ AC_DEFINE(HAVE_JPEG, [1], [Use libjpeg])
-+else
-+ AC_DEFINE(HAVE_JPEG, [0], [Use libjpeg])
-+ JPEG_LIBS=
- fi
--AC_SUBST(HAVE_JPEG)
- AC_SUBST(JPEG_LIBS)
-+AC_SUBST(HAVE_JPEG)
- AM_CONDITIONAL(HAVE_JPEG, test "x$HAVE_JPEG" = "xyes")
-
-
---
-cgit v0.10.2
-
diff --git a/media-plugins/gst-plugins-gl/gst-plugins-gl-0.10.3-r1.ebuild b/media-plugins/gst-plugins-gl/gst-plugins-gl-0.10.3-r1.ebuild
deleted file mode 100644
index f82293075110..000000000000
--- a/media-plugins/gst-plugins-gl/gst-plugins-gl-0.10.3-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-GST_TARBALL_SUFFIX="gz"
-
-inherit autotools eutils gstreamer
-
-DESCRIPTION="GStreamer OpenGL plugins"
-HOMEPAGE="https://gstreamer.freedesktop.org/"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libvisual"
-
-RDEPEND="
- >=media-libs/glew-1.10.0-r1[${MULTILIB_USEDEP}]
- >=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}]
- >=media-libs/gstreamer-0.10.36-r2:0.10[${MULTILIB_USEDEP}]
- >=media-libs/gst-plugins-base-0.10.36:0.10[${MULTILIB_USEDEP}]
- >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
- virtual/jpeg:0[${MULTILIB_USEDEP}]
- >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
- >=x11-libs/libSM-1.2.1-r1[${MULTILIB_USEDEP}]
- libvisual? ( >=media-libs/libvisual-0.4.0-r3[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
- >=dev-util/gtk-doc-am-1.3
-"
-
-# FIXME: some deal with gst-plugin-scanner
-RESTRICT=test
-
-src_prepare() {
- # Fix linking, bug 515014 (from 'master')
- epatch "${FILESDIR}/${PN}-0.10.3-jpeg-check.patch"
- eautoreconf
-}
-
-# FIXME: add support for libvisual
-multilib_src_configure() {
- gstreamer_multilib_src_configure \
- --disable-examples \
- --disable-static \
- --disable-valgrind \
- $(use_enable libvisual)
-
- if multilib_is_native_abi; then
- local d
- for d in libs plugins; do
- ln -s "${S}"/docs/${d}/html docs/${d}/html || die
- done
- fi
-}
-
-multilib_src_install_all() {
- einstalldocs
- prune_libtool_files --modules
-}
diff --git a/media-plugins/gst-plugins-gl/metadata.xml b/media-plugins/gst-plugins-gl/metadata.xml
deleted file mode 100644
index b36250affe63..000000000000
--- a/media-plugins/gst-plugins-gl/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>gstreamer@gentoo.org</email>
- <name>GStreamer package maintainers</name>
- </maintainer>
- <use>
- <flag name="libvisual">Enable visualization effects via
- <pkg>media-libs/libvisual</pkg></flag>
- </use>
-</pkgmetadata>