| 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.13 2009/03/30 04:24:15 tester Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.18 2010/07/28 05:17:58 leio 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 | # |
| … | |
… | |
| 21 | # variable declarations |
21 | # variable declarations |
| 22 | ### |
22 | ### |
| 23 | |
23 | |
| 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-ugly |
| 27 | # need a better way to extract these |
27 | # need a better way to extract these. |
| 28 | # gst-plugins-base 0.9 |
28 | # Not necessary since -ugly-0.10.13: id3tag dvdnav |
| 29 | my_gst_plugins_ugly="a52dec amrnb cdio dvdread dvdnav lame id3tag mad mpeg2dec sidplay twolame" |
29 | my_gst_plugins_ugly="a52dec amrnb amrwb cdio dvdread dvdnav lame id3tag mad |
|
|
30 | mpeg2dec sidplay twolame x264" |
| 30 | |
31 | |
| 31 | #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
32 | #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 | SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2" |
| 33 | |
34 | |
| 34 | S=${WORKDIR}/${MY_P} |
35 | S=${WORKDIR}/${MY_P} |
| … | |
… | |
| 38 | if [ "${PN}" != "${MY_PN}" ]; then |
39 | if [ "${PN}" != "${MY_PN}" ]; then |
| 39 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
40 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
| 40 | DEPEND="${RDEPEND} |
41 | DEPEND="${RDEPEND} |
| 41 | >=sys-apps/sed-4 |
42 | >=sys-apps/sed-4 |
| 42 | dev-util/pkgconfig" |
43 | dev-util/pkgconfig" |
|
|
44 | RESTRICT=test |
| 43 | fi |
45 | fi |
| 44 | |
46 | |
| 45 | ### |
47 | ### |
| 46 | # public functions |
48 | # public functions |
| 47 | ### |
49 | ### |
| … | |
… | |
| 51 | # disable any external plugin besides the plugin we want |
53 | # disable any external plugin besides the plugin we want |
| 52 | local plugin gst_conf |
54 | local plugin gst_conf |
| 53 | |
55 | |
| 54 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
56 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
| 55 | |
57 | |
| 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 |
58 | for plugin in ${my_gst_plugins_ugly}; do |
| 60 | gst_conf="${gst_conf} --disable-${plugin} " |
59 | gst_conf="${gst_conf} --disable-${plugin} " |
| 61 | done |
60 | done |
|
|
61 | |
| 62 | for plugin in ${GST_PLUGINS_BUILD}; do |
62 | for plugin in ${GST_PLUGINS_BUILD}; do |
| 63 | gst_conf="${gst_conf} --enable-${plugin} " |
63 | gst_conf="${gst_conf} --enable-${plugin} " |
| 64 | done |
64 | done |
| 65 | |
65 | |
| 66 | cd ${S} |
66 | cd ${S} |