| 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.10 2007/09/13 15:38:54 drac Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.13 2009/03/30 04:24:15 tester 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 | # |
| … | |
… | |
| 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 dvdread id3tag lame mad mpeg2dec sidplay" |
29 | my_gst_plugins_ugly="a52dec amrnb cdio dvdread dvdnav lame id3tag mad mpeg2dec sidplay twolame" |
| 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} |
| … | |
… | |
| 72 | # public inheritable functions |
72 | # public inheritable functions |
| 73 | ### |
73 | ### |
| 74 | |
74 | |
| 75 | gst-plugins-ugly_src_unpack() { |
75 | gst-plugins-ugly_src_unpack() { |
| 76 | |
76 | |
| 77 | local makefiles |
77 | # local makefiles |
| 78 | |
78 | |
| 79 | unpack ${A} |
79 | unpack ${A} |
| 80 | |
80 | |
| 81 | # Link with the syswide installed gst-libs if needed |
81 | # Link with the syswide installed gst-libs if needed |
| 82 | gst-plugins10_find_plugin_dir |
82 | # gst-plugins10_find_plugin_dir |
| 83 | cd ${S} |
83 | # cd ${S} |
| 84 | |
84 | |
| 85 | # Remove generation of any other Makefiles except the plugin's Makefile |
85 | # Remove generation of any other Makefiles except the plugin's Makefile |
| 86 | if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
86 | # if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 87 | makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
87 | # makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 88 | elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
88 | # elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 89 | makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
89 | # makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 90 | fi |
90 | # fi |
| 91 | sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
91 | # sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
| 92 | -i ${S}/configure |
92 | # -i ${S}/configure |
| 93 | |
93 | |
| 94 | } |
94 | } |
| 95 | |
95 | |
| 96 | gst-plugins-ugly_src_compile() { |
96 | gst-plugins-ugly_src_compile() { |
| 97 | |
97 | |