2012-05-03 08:13:27 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-12-03 10:46:56 +04:00
|
|
|
# @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.
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-12-03 10:46:56 +04:00
|
|
|
GST_ORG_MODULE="gst-plugins-ugly"
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-12-03 10:46:56 +04:00
|
|
|
inherit gst-plugins10
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
case "${EAPI:-0}" in
|
2012-12-03 10:46:56 +04:00
|
|
|
1|2|3|4|5)
|
2012-02-06 16:39:49 +04:00
|
|
|
;;
|
2012-12-03 10:46:56 +04:00
|
|
|
0)
|
|
|
|
die "EAPI=\"${EAPI}\" is not supported anymore"
|
2012-02-06 16:39:49 +04:00
|
|
|
;;
|
|
|
|
*)
|
2012-12-03 10:46:56 +04:00
|
|
|
die "EAPI=\"${EAPI}\" is not supported yet"
|
2012-02-06 16:39:49 +04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|