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.11 2008/06/29 18:33:17 drac 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 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 |
27 |
# need a better way to extract these |
28 |
# gst-plugins-base 0.9 |
29 |
my_gst_plugins_ugly="a52dec amrnb cdio dvdread dvdnav lame id3tag mad mpeg2dec sidplay" |
30 |
|
31 |
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
32 |
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2" |
33 |
|
34 |
S=${WORKDIR}/${MY_P} |
35 |
|
36 |
# added to remove circular deps |
37 |
# 6/2/2006 - zaheerm |
38 |
if [ "${PN}" != "${MY_PN}" ]; then |
39 |
RDEPEND="=media-libs/gst-plugins-base-0.10*" |
40 |
DEPEND="${RDEPEND} |
41 |
>=sys-apps/sed-4 |
42 |
dev-util/pkgconfig" |
43 |
fi |
44 |
|
45 |
### |
46 |
# public functions |
47 |
### |
48 |
|
49 |
gst-plugins-ugly_src_configure() { |
50 |
|
51 |
# disable any external plugin besides the plugin we want |
52 |
local plugin gst_conf |
53 |
|
54 |
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
55 |
|
56 |
for plugin in ${GST_PLUGINS_BUILD}; do |
57 |
my_gst_plugins_ugly=${my_gst_plugins_ugly/${plugin}/} |
58 |
done |
59 |
for plugin in ${my_gst_plugins_ugly}; do |
60 |
gst_conf="${gst_conf} --disable-${plugin} " |
61 |
done |
62 |
for plugin in ${GST_PLUGINS_BUILD}; do |
63 |
gst_conf="${gst_conf} --enable-${plugin} " |
64 |
done |
65 |
|
66 |
cd ${S} |
67 |
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure" |
68 |
|
69 |
} |
70 |
|
71 |
### |
72 |
# public inheritable functions |
73 |
### |
74 |
|
75 |
gst-plugins-ugly_src_unpack() { |
76 |
|
77 |
local makefiles |
78 |
|
79 |
unpack ${A} |
80 |
|
81 |
# Link with the syswide installed gst-libs if needed |
82 |
gst-plugins10_find_plugin_dir |
83 |
cd ${S} |
84 |
|
85 |
# Remove generation of any other Makefiles except the plugin's Makefile |
86 |
if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
87 |
makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
88 |
elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
89 |
makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
90 |
fi |
91 |
sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
92 |
-i ${S}/configure |
93 |
|
94 |
} |
95 |
|
96 |
gst-plugins-ugly_src_compile() { |
97 |
|
98 |
gst-plugins-ugly_src_configure ${@} |
99 |
|
100 |
gst-plugins10_find_plugin_dir |
101 |
emake || die "compile failure" |
102 |
|
103 |
} |
104 |
|
105 |
gst-plugins-ugly_src_install() { |
106 |
|
107 |
gst-plugins10_find_plugin_dir |
108 |
einstall || die |
109 |
|
110 |
[[ -e README ]] && dodoc README |
111 |
} |
112 |
|
113 |
|
114 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |