| 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-good.eclass,v 1.8 2006/05/04 16:30:35 zaheerm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.23 2011/03/20 09:44:45 leio Exp $ |
| 4 | |
4 | |
| 5 | # Author : foser <foser@gentoo.org>, zaheerm <zaheerm@gentoo.org> |
5 | # Author : foser <foser@gentoo.org>, zaheerm <zaheerm@gentoo.org> |
| 6 | |
6 | |
| 7 | # gst-plugins-good eclass |
7 | # gst-plugins-good 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, obtain recommended plugins to use from |
13 | # defined in the source, 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-good |
24 | MY_PN=gst-plugins-good |
| 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 | |
| 29 | my_gst_plugins_good="gconf gconftool oss aalib aalibtest cairo cdio esd esdtest flac jpeg ladspa libcaca libdv libpng dv1394 shout2 shout2test speex annodex hal x taglib" |
29 | # First line for non-plugin build related configure options; second line for |
|
|
30 | # sys/ plugins; rest is split plugin options in order of ./configure --help output. |
|
|
31 | # Good ways of validation are seeing diff of old and new configure.ac, and ./configure --help |
|
|
32 | # |
|
|
33 | # This list is current to gst-plugins-good-0.10.23: |
|
|
34 | my_gst_plugins_good="gconftool zlib bz2 |
|
|
35 | directsound oss sunaudio osx_audio osx_video gst_v4l2 x xshm xvideo |
|
|
36 | aalib aalibtest annodex cairo esd esdtest flac gconf gdk_pixbuf hal jpeg |
|
|
37 | libcaca libdv libpng pulse dv1394 shout2 shout2test soup speex taglib wavpack" |
|
|
38 | |
|
|
39 | # When adding conditionals like below, be careful about having leading spaces in concat |
|
|
40 | |
|
|
41 | # sys/oss4 moved here since 0.10.23 |
|
|
42 | if version_is_at_least "0.10.23"; then |
|
|
43 | my_gst_plugins_good+=" oss4" |
|
|
44 | fi |
|
|
45 | |
|
|
46 | # ext/jack moved here since 0.10.27 |
|
|
47 | if version_is_at_least "0.10.27"; then |
|
|
48 | my_gst_plugins_good+=" jack" |
|
|
49 | fi |
| 30 | |
50 | |
| 31 | #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
51 | #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
| 32 | SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/${MY_P}.tar.bz2" |
52 | SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/${MY_P}.tar.bz2" |
| 33 | |
53 | |
| 34 | S=${WORKDIR}/${MY_P} |
54 | S=${WORKDIR}/${MY_P} |
| 35 | # added to remove circular deps |
55 | # added to remove circular deps |
| 36 | # 6/2/2006 - zaheerm |
56 | # 6/2/2006 - zaheerm |
| 37 | if [ "${PN}" != "${MY_PN}" ]; then |
57 | if [ "${PN}" != "${MY_PN}" ]; then |
| 38 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
58 | RDEPEND="=media-libs/gst-plugins-base-0.10*" |
| 39 | DEPEND="${RDEPEND} |
59 | DEPEND="${RDEPEND} |
| 40 | >=sys-apps/sed-4" |
60 | >=sys-apps/sed-4 |
|
|
61 | dev-util/pkgconfig" |
|
|
62 | |
|
|
63 | # -good-0.10.24 uses orc optionally instead of liboil unconditionally. |
|
|
64 | # While <0.10.24 configure always checks for liboil, it is linked to only by non-split |
|
|
65 | # plugins in gst/, so we only builddep for all old packages, and have a RDEPEND in old |
|
|
66 | # versions of media-libs/gst-plugins-good |
|
|
67 | if ! version_is_at_least "0.10.24"; then |
|
|
68 | DEPEND="${DEPEND} >=dev-libs/liboil-0.3.8" |
|
|
69 | fi |
|
|
70 | |
|
|
71 | RESTRICT=test |
| 41 | fi |
72 | fi |
| 42 | |
73 | |
| 43 | ### |
74 | ### |
| 44 | # public functions |
75 | # public functions |
| 45 | ### |
76 | ### |
| … | |
… | |
| 49 | # disable any external plugin besides the plugin we want |
80 | # disable any external plugin besides the plugin we want |
| 50 | local plugin gst_conf |
81 | local plugin gst_conf |
| 51 | |
82 | |
| 52 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
83 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
| 53 | |
84 | |
| 54 | for plugin in ${GST_PLUGINS_BUILD}; do |
|
|
| 55 | my_gst_plugins_good=${my_gst_plugins_good/${plugin}/} |
|
|
| 56 | done |
|
|
| 57 | for plugin in ${my_gst_plugins_good}; do |
85 | for plugin in ${my_gst_plugins_good}; do |
| 58 | gst_conf="${gst_conf} --disable-${plugin} " |
86 | gst_conf="${gst_conf} --disable-${plugin} " |
| 59 | done |
87 | done |
|
|
88 | |
| 60 | for plugin in ${GST_PLUGINS_BUILD}; do |
89 | for plugin in ${GST_PLUGINS_BUILD}; do |
| 61 | gst_conf="${gst_conf} --enable-${plugin} " |
90 | gst_conf="${gst_conf} --enable-${plugin} " |
| 62 | done |
91 | done |
| 63 | |
92 | |
| 64 | cd ${S} |
93 | cd ${S} |
| 65 | econf ${@} ${gst_conf} || die "./configure failure" |
94 | econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure" |
| 66 | |
95 | |
| 67 | } |
96 | } |
| 68 | |
97 | |
| 69 | ### |
98 | ### |
| 70 | # public inheritable functions |
99 | # public inheritable functions |
| 71 | ### |
100 | ### |
| 72 | |
101 | |
| 73 | gst-plugins-good_src_unpack() { |
102 | gst-plugins-good_src_unpack() { |
| 74 | |
103 | |
| 75 | local makefiles |
104 | # local makefiles |
| 76 | |
105 | |
| 77 | unpack ${A} |
106 | unpack ${A} |
| 78 | |
107 | |
| 79 | # Link with the syswide installed gst-libs if needed |
108 | # Link with the syswide installed gst-libs if needed |
| 80 | gst-plugins10_find_plugin_dir |
109 | # gst-plugins10_find_plugin_dir |
| 81 | cd ${S} |
110 | # cd ${S} |
| 82 | |
111 | |
| 83 | # Remove generation of any other Makefiles except the plugin's Makefile |
112 | # Remove generation of any other Makefiles except the plugin's Makefile |
| 84 | if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
113 | # if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 85 | makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
114 | # makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 86 | elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
115 | # elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
| 87 | makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
116 | # makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
| 88 | fi |
117 | # fi |
| 89 | sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
118 | # sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
| 90 | -i ${S}/configure |
119 | # -i ${S}/configure |
| 91 | |
120 | |
| 92 | } |
121 | } |
| 93 | |
122 | |
| 94 | gst-plugins-good_src_compile() { |
123 | gst-plugins-good_src_compile() { |
| 95 | |
124 | |
| … | |
… | |
| 103 | gst-plugins-good_src_install() { |
132 | gst-plugins-good_src_install() { |
| 104 | |
133 | |
| 105 | gst-plugins10_find_plugin_dir |
134 | gst-plugins10_find_plugin_dir |
| 106 | einstall || die |
135 | einstall || die |
| 107 | |
136 | |
| 108 | dodoc README |
137 | [[ -e README ]] && dodoc README |
| 109 | } |
138 | } |
| 110 | |
139 | |
| 111 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
140 | EXPORT_FUNCTIONS src_unpack src_compile src_install |