| 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-ugly.eclass,v 1.19 2010/07/28 06:24:44 leio Exp $ |
| 4 |
|
| 5 |
# Author : foser <foser@gentoo.org> |
| 6 |
|
| 7 |
# gst-plugins-ugly 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, in case of spider usage 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-ugly |
| 25 |
MY_P=${MY_PN}-${PV} |
| 26 |
# All relevant configure options for gst-plugins-ugly |
| 27 |
# need a better way to extract these. |
| 28 |
my_gst_plugins_ugly="a52dec amrnb amrwb cdio dvdread lame mad mpeg2dec sidplay |
| 29 |
twolame x264" |
| 30 |
|
| 31 |
# dvdnav and id3tag disabled/removed since -ugly-0.10.13 |
| 32 |
if ! version_is_at_least "0.10.13"; then |
| 33 |
my_gst_plugins_bad+=" dvdnav id3tag" |
| 34 |
fi |
| 35 |
|
| 36 |
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
| 37 |
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2" |
| 38 |
|
| 39 |
S=${WORKDIR}/${MY_P} |
| 40 |
|
| 41 |
# added to remove circular deps |
| 42 |
# 6/2/2006 - zaheerm |
| 43 |
if [ "${PN}" != "${MY_PN}" ]; then |
| 44 |
RDEPEND="=media-libs/gst-plugins-base-0.10*" |
| 45 |
DEPEND="${RDEPEND} |
| 46 |
>=sys-apps/sed-4 |
| 47 |
dev-util/pkgconfig" |
| 48 |
|
| 49 |
# -ugly-0.10.16 uses orc optionally instead of liboil unconditionally. |
| 50 |
# While <0.10.16 configure always checks for liboil, it is linked to only by a52dec, |
| 51 |
# so we only builddep for all packages, and have a RDEPEND in old gst-plugins-a52dec |
| 52 |
if ! version_is_at_least "0.10.16"; then |
| 53 |
DEPEND="${DEPEND} >=dev-libs/liboil-0.3.8" |
| 54 |
fi |
| 55 |
|
| 56 |
RESTRICT=test |
| 57 |
fi |
| 58 |
|
| 59 |
### |
| 60 |
# public functions |
| 61 |
### |
| 62 |
|
| 63 |
gst-plugins-ugly_src_configure() { |
| 64 |
|
| 65 |
# disable any external plugin besides the plugin we want |
| 66 |
local plugin gst_conf |
| 67 |
|
| 68 |
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
| 69 |
|
| 70 |
for plugin in ${my_gst_plugins_ugly}; do |
| 71 |
gst_conf="${gst_conf} --disable-${plugin} " |
| 72 |
done |
| 73 |
|
| 74 |
for plugin in ${GST_PLUGINS_BUILD}; do |
| 75 |
gst_conf="${gst_conf} --enable-${plugin} " |
| 76 |
done |
| 77 |
|
| 78 |
cd ${S} |
| 79 |
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure" |
| 80 |
|
| 81 |
} |
| 82 |
|
| 83 |
### |
| 84 |
# public inheritable functions |
| 85 |
### |
| 86 |
|
| 87 |
gst-plugins-ugly_src_unpack() { |
| 88 |
|
| 89 |
# local makefiles |
| 90 |
|
| 91 |
unpack ${A} |
| 92 |
|
| 93 |
# Link with the syswide installed gst-libs if needed |
| 94 |
# gst-plugins10_find_plugin_dir |
| 95 |
# cd ${S} |
| 96 |
|
| 97 |
# Remove generation of any other Makefiles except the plugin's Makefile |
| 98 |
# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 99 |
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 100 |
# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 101 |
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 102 |
# fi |
| 103 |
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
| 104 |
# -i ${S}/configure |
| 105 |
|
| 106 |
} |
| 107 |
|
| 108 |
gst-plugins-ugly_src_compile() { |
| 109 |
|
| 110 |
gst-plugins-ugly_src_configure ${@} |
| 111 |
|
| 112 |
gst-plugins10_find_plugin_dir |
| 113 |
emake || die "compile failure" |
| 114 |
|
| 115 |
} |
| 116 |
|
| 117 |
gst-plugins-ugly_src_install() { |
| 118 |
|
| 119 |
gst-plugins10_find_plugin_dir |
| 120 |
einstall || die |
| 121 |
|
| 122 |
[[ -e README ]] && dodoc README |
| 123 |
} |
| 124 |
|
| 125 |
|
| 126 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |