| 1 |
# Copyright 1999-2004 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.20 2010/07/28 05:17:58 leio Exp $ |
| 4 |
|
| 5 |
# Author : foser <foser@gentoo.org>, zaheerm <zaheerm@gentoo.org> |
| 6 |
|
| 7 |
# gst-plugins-good eclass |
| 8 |
# |
| 9 |
# eclass to make external gst-plugins emergable on a per-plugin basis |
| 10 |
# to solve the problem with gst-plugins generating far too much unneeded deps |
| 11 |
# |
| 12 |
# 3rd party applications using gstreamer now should depend on a set of plugins as |
| 13 |
# defined in the source, obtain recommended plugins to use from |
| 14 |
# Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer |
| 15 |
# or the gstreamer team. |
| 16 |
|
| 17 |
inherit eutils versionator gst-plugins10 |
| 18 |
|
| 19 |
|
| 20 |
### |
| 21 |
# variable declarations |
| 22 |
### |
| 23 |
|
| 24 |
MY_PN=gst-plugins-good |
| 25 |
MY_P=${MY_PN}-${PV} |
| 26 |
# All relevant configure options for gst-plugins |
| 27 |
# need a better way to extract these |
| 28 |
|
| 29 |
# First line for non-plugin build related configure options; second line for |
| 30 |
# sys/ plugins; rest is split plugin options in order of ./configure --help output. |
| 31 |
# Good ways of validation are seeing diff of old and new configure.ac, and ./configure --help |
| 32 |
# |
| 33 |
# This list is current to gst-plugins-good-0.10.23: |
| 34 |
my_gst_plugins_good="gconftool zlib bz2 |
| 35 |
directsound oss sunaudio osx_audio osx_video gst_v4l2 x xshm xvideo |
| 36 |
aalib aalibtest annodex cairo esd esdtest flac gconf gdk_pixbuf hal jpeg |
| 37 |
libcaca libdv libpng pulse dv1394 shout2 shout2test soup speex taglib wavpack" |
| 38 |
|
| 39 |
# When adding conditionals like below, be careful about having leading spaces in concat |
| 40 |
|
| 41 |
# sys/oss4 moved here since 0.10.23 |
| 42 |
if version_is_at_least "0.10.23"; then |
| 43 |
my_gst_plugins_good+=" oss4" |
| 44 |
fi |
| 45 |
|
| 46 |
|
| 47 |
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
| 48 |
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/${MY_P}.tar.bz2" |
| 49 |
|
| 50 |
S=${WORKDIR}/${MY_P} |
| 51 |
# added to remove circular deps |
| 52 |
# 6/2/2006 - zaheerm |
| 53 |
if [ "${PN}" != "${MY_PN}" ]; then |
| 54 |
RDEPEND="=media-libs/gst-plugins-base-0.10*" |
| 55 |
DEPEND="${RDEPEND} |
| 56 |
>=sys-apps/sed-4 |
| 57 |
dev-util/pkgconfig" |
| 58 |
RESTRICT=test |
| 59 |
fi |
| 60 |
|
| 61 |
### |
| 62 |
# public functions |
| 63 |
### |
| 64 |
|
| 65 |
gst-plugins-good_src_configure() { |
| 66 |
|
| 67 |
# disable any external plugin besides the plugin we want |
| 68 |
local plugin gst_conf |
| 69 |
|
| 70 |
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
| 71 |
|
| 72 |
for plugin in ${my_gst_plugins_good}; do |
| 73 |
gst_conf="${gst_conf} --disable-${plugin} " |
| 74 |
done |
| 75 |
|
| 76 |
for plugin in ${GST_PLUGINS_BUILD}; do |
| 77 |
gst_conf="${gst_conf} --enable-${plugin} " |
| 78 |
done |
| 79 |
|
| 80 |
cd ${S} |
| 81 |
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure" |
| 82 |
|
| 83 |
} |
| 84 |
|
| 85 |
### |
| 86 |
# public inheritable functions |
| 87 |
### |
| 88 |
|
| 89 |
gst-plugins-good_src_unpack() { |
| 90 |
|
| 91 |
# local makefiles |
| 92 |
|
| 93 |
unpack ${A} |
| 94 |
|
| 95 |
# Link with the syswide installed gst-libs if needed |
| 96 |
# gst-plugins10_find_plugin_dir |
| 97 |
# cd ${S} |
| 98 |
|
| 99 |
# Remove generation of any other Makefiles except the plugin's Makefile |
| 100 |
# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 101 |
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 102 |
# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 103 |
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 104 |
# fi |
| 105 |
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
| 106 |
# -i ${S}/configure |
| 107 |
|
| 108 |
} |
| 109 |
|
| 110 |
gst-plugins-good_src_compile() { |
| 111 |
|
| 112 |
gst-plugins-good_src_configure ${@} |
| 113 |
|
| 114 |
gst-plugins10_find_plugin_dir |
| 115 |
emake || die "compile failure" |
| 116 |
|
| 117 |
} |
| 118 |
|
| 119 |
gst-plugins-good_src_install() { |
| 120 |
|
| 121 |
gst-plugins10_find_plugin_dir |
| 122 |
einstall || die |
| 123 |
|
| 124 |
[[ -e README ]] && dodoc README |
| 125 |
} |
| 126 |
|
| 127 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |