summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'eclass/gst-plugins-bad.eclass')
-rw-r--r--eclass/gst-plugins-bad.eclass47
1 files changed, 0 insertions, 47 deletions
diff --git a/eclass/gst-plugins-bad.eclass b/eclass/gst-plugins-bad.eclass
deleted file mode 100644
index d26002ac2951..000000000000
--- a/eclass/gst-plugins-bad.eclass
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# @DEAD
-# Michał Górny <mgorny@gentoo.org> (16 May 2017)
-# gst-plugins* eclasses are no longer used. They will be removed
-# in 30 days.
-
-# @ECLASS: gst-plugins10-bad.eclass
-# @MAINTAINER:
-# gstreamer@gentoo.org
-# @AUTHOR:
-# Gilles Dartiguelongue <eva@gentoo.org>
-# Saleem Abdulrasool <compnerd@gentoo.org>
-# foser <foser@gentoo.org>
-# zaheerm <zaheerm@gentoo.org>
-# @BLURB: Manages build for invididual ebuild for gst-plugins-bad.
-# @DESCRIPTION:
-# See gst-plugins10.eclass documentation.
-
-GST_ORG_MODULE="gst-plugins-bad"
-
-inherit eutils gst-plugins10
-
-case "${EAPI:-0}" in
- 1|2|3|4|5)
- ;;
- 0)
- die "EAPI=\"${EAPI}\" is not supported anymore"
- ;;
- *)
- die "EAPI=\"${EAPI}\" is not supported yet"
- ;;
-esac
-
-
-if [[ ${PN} != ${GST_ORG_MODULE} ]]; then
-# -bad-0.10.20 uses orc optionally instead of liboil unconditionally.
-# While <0.10.20 configure always check for liboil, it is used only by
-# non-split plugins in gst/ (legacyresample and mpegdemux), so we only
-# builddep for all old packages, and have a RDEPEND in old versions of
-# media-libs/gst-plugins-bad
- if [[ ${SLOT} = "0.10" ]] && ! version_is_at_least "0.10.20"; then
- DEPEND="${DEPEND} >=dev-libs/liboil-0.3.8"
- fi
-fi
-