| 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.24 2011/05/04 03:19:27 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.28:
|
| 34 |
my_gst_plugins_good="gconftool zlib bz2
|
| 35 |
directsound oss oss4 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 |
# cairooverlay added to the cairo plugin under cairo_gobject
|
| 42 |
if version_is_at_least "0.10.29"; then
|
| 43 |
my_gst_plugins_good+=" cairo_gobject"
|
| 44 |
fi
|
| 45 |
|
| 46 |
# ext/jack moved here since 0.10.27
|
| 47 |
if version_is_at_least "0.10.27"; then
|
| 48 |
my_gst_plugins_good+=" jack"
|
| 49 |
fi
|
| 50 |
|
| 51 |
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
|
| 52 |
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/${MY_P}.tar.bz2"
|
| 53 |
|
| 54 |
S=${WORKDIR}/${MY_P}
|
| 55 |
# added to remove circular deps
|
| 56 |
# 6/2/2006 - zaheerm
|
| 57 |
if [ "${PN}" != "${MY_PN}" ]; then
|
| 58 |
RDEPEND="=media-libs/gst-plugins-base-0.10*"
|
| 59 |
DEPEND="${RDEPEND}
|
| 60 |
>=sys-apps/sed-4
|
| 61 |
dev-util/pkgconfig"
|
| 62 |
|
| 63 |
# -good-0.10.24 uses orc optionally instead of liboil unconditionally.
|
| 64 |
# While <0.10.24 configure always checks for liboil, it is linked to only by non-split
|
| 65 |
# plugins in gst/, so we only builddep for all old packages, and have a RDEPEND in old
|
| 66 |
# versions of media-libs/gst-plugins-good
|
| 67 |
if ! version_is_at_least "0.10.24"; then
|
| 68 |
DEPEND="${DEPEND} >=dev-libs/liboil-0.3.8"
|
| 69 |
fi
|
| 70 |
|
| 71 |
RESTRICT=test
|
| 72 |
fi
|
| 73 |
|
| 74 |
###
|
| 75 |
# public functions
|
| 76 |
###
|
| 77 |
|
| 78 |
gst-plugins-good_src_configure() {
|
| 79 |
|
| 80 |
# disable any external plugin besides the plugin we want
|
| 81 |
local plugin gst_conf
|
| 82 |
|
| 83 |
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
|
| 84 |
|
| 85 |
for plugin in ${my_gst_plugins_good}; do
|
| 86 |
gst_conf="${gst_conf} --disable-${plugin} "
|
| 87 |
done
|
| 88 |
|
| 89 |
for plugin in ${GST_PLUGINS_BUILD}; do
|
| 90 |
gst_conf="${gst_conf} --enable-${plugin} "
|
| 91 |
done
|
| 92 |
|
| 93 |
cd ${S}
|
| 94 |
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure"
|
| 95 |
|
| 96 |
}
|
| 97 |
|
| 98 |
###
|
| 99 |
# public inheritable functions
|
| 100 |
###
|
| 101 |
|
| 102 |
gst-plugins-good_src_unpack() {
|
| 103 |
|
| 104 |
# local makefiles
|
| 105 |
|
| 106 |
unpack ${A}
|
| 107 |
|
| 108 |
# Link with the syswide installed gst-libs if needed
|
| 109 |
# gst-plugins10_find_plugin_dir
|
| 110 |
# cd ${S}
|
| 111 |
|
| 112 |
# Remove generation of any other Makefiles except the plugin's Makefile
|
| 113 |
# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then
|
| 114 |
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
| 115 |
# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then
|
| 116 |
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
| 117 |
# fi
|
| 118 |
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \
|
| 119 |
# -i ${S}/configure
|
| 120 |
|
| 121 |
}
|
| 122 |
|
| 123 |
gst-plugins-good_src_compile() {
|
| 124 |
|
| 125 |
gst-plugins-good_src_configure ${@}
|
| 126 |
|
| 127 |
gst-plugins10_find_plugin_dir
|
| 128 |
emake || die "compile failure"
|
| 129 |
|
| 130 |
}
|
| 131 |
|
| 132 |
gst-plugins-good_src_install() {
|
| 133 |
|
| 134 |
gst-plugins10_find_plugin_dir
|
| 135 |
einstall || die
|
| 136 |
|
| 137 |
[[ -e README ]] && dodoc README
|
| 138 |
}
|
| 139 |
|
| 140 |
EXPORT_FUNCTIONS src_unpack src_compile src_install
|