| 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.19 2010/07/28 06:24:44 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 | # |
| … | |
… | |
| 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 versionator gst-plugins10 |
| 18 | |
18 | |
| 19 | |
19 | |
| 20 | ### |
20 | ### |
| 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 |
|
|
| 29 | my_gst_plugins_ugly="amrnb a52dec dvdread id3tag lame mad mpeg2dec sidplay" |
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 |
| 30 | |
35 | |
| 31 | #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
36 | #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" |
37 | SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2" |
| 33 | |
38 | |
| 34 | S=${WORKDIR}/${MY_P} |
39 | S=${WORKDIR}/${MY_P} |
| … | |
… | |
| 38 | if [ "${PN}" != "${MY_PN}" ]; then |
43 | if [ "${PN}" != "${MY_PN}" ]; then |
| 39 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
44 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
| 40 | DEPEND="${RDEPEND} |
45 | DEPEND="${RDEPEND} |
| 41 | >=sys-apps/sed-4 |
46 | >=sys-apps/sed-4 |
| 42 | dev-util/pkgconfig" |
47 | dev-util/pkgconfig" |
|
|
48 | RESTRICT=test |
| 43 | fi |
49 | fi |
| 44 | |
50 | |
| 45 | ### |
51 | ### |
| 46 | # public functions |
52 | # public functions |
| 47 | ### |
53 | ### |
| … | |
… | |
| 51 | # disable any external plugin besides the plugin we want |
57 | # disable any external plugin besides the plugin we want |
| 52 | local plugin gst_conf |
58 | local plugin gst_conf |
| 53 | |
59 | |
| 54 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
60 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
| 55 | |
61 | |
| 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 |
62 | for plugin in ${my_gst_plugins_ugly}; do |
| 60 | gst_conf="${gst_conf} --disable-${plugin} " |
63 | gst_conf="${gst_conf} --disable-${plugin} " |
| 61 | done |
64 | done |
|
|
65 | |
| 62 | for plugin in ${GST_PLUGINS_BUILD}; do |
66 | for plugin in ${GST_PLUGINS_BUILD}; do |
| 63 | gst_conf="${gst_conf} --enable-${plugin} " |
67 | gst_conf="${gst_conf} --enable-${plugin} " |
| 64 | done |
68 | done |
| 65 | |
69 | |
| 66 | cd ${S} |
70 | cd ${S} |
| … | |
… | |
| 72 | # public inheritable functions |
76 | # public inheritable functions |
| 73 | ### |
77 | ### |
| 74 | |
78 | |
| 75 | gst-plugins-ugly_src_unpack() { |
79 | gst-plugins-ugly_src_unpack() { |
| 76 | |
80 | |
| 77 | local makefiles |
81 | # local makefiles |
| 78 | |
82 | |
| 79 | unpack ${A} |
83 | unpack ${A} |
| 80 | |
84 | |
| 81 | # Link with the syswide installed gst-libs if needed |
85 | # Link with the syswide installed gst-libs if needed |
| 82 | gst-plugins10_find_plugin_dir |
86 | # gst-plugins10_find_plugin_dir |
| 83 | cd ${S} |
87 | # cd ${S} |
| 84 | |
88 | |
| 85 | # Remove generation of any other Makefiles except the plugin's Makefile |
89 | # Remove generation of any other Makefiles except the plugin's Makefile |
| 86 | if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
90 | # if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 87 | makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
91 | # makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 88 | elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
92 | # elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 89 | makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
93 | # makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 90 | fi |
94 | # fi |
| 91 | sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
95 | # sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
| 92 | -i ${S}/configure |
96 | # -i ${S}/configure |
| 93 | |
97 | |
| 94 | } |
98 | } |
| 95 | |
99 | |
| 96 | gst-plugins-ugly_src_compile() { |
100 | gst-plugins-ugly_src_compile() { |
| 97 | |
101 | |