| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: $
|
| 4 |
|
| 5 |
# @ECLASS: gst-plugins-base.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# gstreamer@gentoo.org
|
| 8 |
# @AUTHOR:
|
| 9 |
# Gilles Dartiguelongue <eva@gentoo.org>
|
| 10 |
# Saleem Abdulrasool <compnerd@gentoo.org>
|
| 11 |
# foser <foser@gentoo.org>
|
| 12 |
# zaheerm <zaheerm@gentoo.org>
|
| 13 |
# @BLURB: Manages build for invididual ebuild for gst-plugins-base.
|
| 14 |
# @DESCRIPTION:
|
| 15 |
# See gst-plugins10.eclass documentation.
|
| 16 |
|
| 17 |
GST_ORG_MODULE="gst-plugins-base"
|
| 18 |
|
| 19 |
inherit gst-plugins10
|
| 20 |
|
| 21 |
case "${EAPI:-0}" in
|
| 22 |
1|2|3|4|5)
|
| 23 |
;;
|
| 24 |
0)
|
| 25 |
die "EAPI=\"${EAPI}\" is not supported anymore"
|
| 26 |
;;
|
| 27 |
*)
|
| 28 |
die "EAPI=\"${EAPI}\" is not supported yet"
|
| 29 |
;;
|
| 30 |
esac
|
| 31 |
|