1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
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.3 2005/12/05 17:07:17 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.10 2007/09/13 15:38:54 drac Exp $ |
4 | |
4 | |
5 | # Author : foser <foser@gentoo.org> |
5 | # Author : foser <foser@gentoo.org> |
6 | |
6 | |
7 | # gst-plugins-ugly eclass |
7 | # gst-plugins-ugly eclass |
8 | # |
8 | # |
9 | # eclass to make external gst-plugins emergable on a per-plugin basis |
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 |
10 | # to solve the problem with gst-plugins generating far too much unneeded deps |
11 | # |
11 | # |
12 | # 3rd party applications using gstreamer now should depend on a set of plugins as |
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 |
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 |
14 | # Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer |
15 | # or the gstreamer team. |
15 | # or the gstreamer team. |
16 | |
16 | |
17 | inherit eutils gst-plugins10 |
17 | inherit eutils gst-plugins10 |
18 | |
18 | |
19 | |
19 | |
… | |
… | |
24 | MY_PN=gst-plugins-ugly |
24 | MY_PN=gst-plugins-ugly |
25 | MY_P=${MY_PN}-${PV} |
25 | MY_P=${MY_PN}-${PV} |
26 | # All relevant configure options for gst-plugins |
26 | # All relevant configure options for gst-plugins |
27 | # need a better way to extract these |
27 | # need a better way to extract these |
28 | # gst-plugins-base 0.9 |
28 | # gst-plugins-base 0.9 |
29 | my_gst_plugins_ugly="amrnb a52dec lame mad mpeg2dec sidplay" |
29 | my_gst_plugins_ugly="amrnb a52dec dvdread id3tag lame mad mpeg2dec sidplay" |
30 | |
30 | |
31 | #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
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" |
32 | SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2" |
33 | |
33 | |
34 | S=${WORKDIR}/${MY_P} |
34 | S=${WORKDIR}/${MY_P} |
35 | |
35 | |
|
|
36 | # added to remove circular deps |
|
|
37 | # 6/2/2006 - zaheerm |
|
|
38 | if [ "${PN}" != "${MY_PN}" ]; then |
36 | RDEPEND=">=media-libs/gst-plugins-base-0.9" |
39 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
37 | DEPEND="${RDEPEND} |
40 | DEPEND="${RDEPEND} |
38 | >=sys-apps/sed-4" |
41 | >=sys-apps/sed-4 |
39 | |
42 | dev-util/pkgconfig" |
|
|
43 | fi |
40 | |
44 | |
41 | ### |
45 | ### |
42 | # public functions |
46 | # public functions |
43 | ### |
47 | ### |
44 | |
48 | |
45 | gst-plugins-ugly_src_configure() { |
49 | gst-plugins-ugly_src_configure() { |
46 | |
50 | |
47 | # disable any external plugin besides the plugin we want |
51 | # disable any external plugin besides the plugin we want |
48 | local plugin gst_conf |
52 | local plugin gst_conf |
49 | |
53 | |
50 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
54 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
51 | |
55 | |
… | |
… | |
58 | for plugin in ${GST_PLUGINS_BUILD}; do |
62 | for plugin in ${GST_PLUGINS_BUILD}; do |
59 | gst_conf="${gst_conf} --enable-${plugin} " |
63 | gst_conf="${gst_conf} --enable-${plugin} " |
60 | done |
64 | done |
61 | |
65 | |
62 | cd ${S} |
66 | cd ${S} |
63 | econf ${@} ${gst_conf} || die "./configure failure" |
67 | econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure" |
64 | |
68 | |
65 | } |
69 | } |
66 | |
70 | |
67 | ### |
71 | ### |
68 | # public inheritable functions |
72 | # public inheritable functions |
… | |
… | |
81 | # Remove generation of any other Makefiles except the plugin's Makefile |
85 | # Remove generation of any other Makefiles except the plugin's Makefile |
82 | if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
86 | if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
83 | makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
87 | makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
84 | elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
88 | elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
85 | makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
89 | makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
86 | fi |
90 | fi |
87 | sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
91 | sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
88 | -i ${S}/configure |
92 | -i ${S}/configure |
89 | |
93 | |
90 | } |
94 | } |
91 | |
95 | |
… | |
… | |
101 | gst-plugins-ugly_src_install() { |
105 | gst-plugins-ugly_src_install() { |
102 | |
106 | |
103 | gst-plugins10_find_plugin_dir |
107 | gst-plugins10_find_plugin_dir |
104 | einstall || die |
108 | einstall || die |
105 | |
109 | |
106 | dodoc README |
110 | [[ -e README ]] && dodoc README |
107 | } |
111 | } |
108 | |
112 | |
109 | |
113 | |
110 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
114 | EXPORT_FUNCTIONS src_unpack src_compile src_install |