31 lines
780 B
Bash
31 lines
780 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.25 2012/12/02 17:16:20 eva Exp $
|
|
|
|
# @ECLASS: gst-plugins-ugly.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-ugly.
|
|
# @DESCRIPTION:
|
|
# See gst-plugins10.eclass documentation.
|
|
|
|
GST_ORG_MODULE="gst-plugins-ugly"
|
|
|
|
inherit 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
|
|
|