summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2012-11-28 15:59:48 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-28 15:25:33 +0000
commit247b6a3754c2c50318e2a73d79981ba0e9cb560b (patch)
treef10577a3868ce51935c9483e58c36268d1ae9bcc /meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
parentf931aeb72e4bcc2c8138d9f1b55b1aea86e13b67 (diff)
downloadpoky-1.4_M1.tar.gz
gstreamer, gst-plugins*: fix localdata1.4_M1.rc11.4_M1.final1.4_M1
* all gst* packages were producing LC_MESSAGES/.mo instead of LC_MESSAGES/gst*.mo and it was leading to file conflicts between gst* packages too * for more details see http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html * buildhistory diff, confirms issue fixed https://github.com/shr-distribution/buildhistory/commit/f2c0888c0e08dfb33cc0cdf384621fc499d4ac04 * Thanks to Enrico for simplier solution (From OE-Core rev: f50e2984d9411a059b86d6c158e9416fceb84c3d) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb9
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
index 4ca44290da..90b1982aab 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
9 file://gst/gst.h;beginline=1;endline=21;md5=8e5fe5e87d33a04479fde862e238eaa4" 9 file://gst/gst.h;beginline=1;endline=21;md5=8e5fe5e87d33a04479fde862e238eaa4"
10DEPENDS = "glib-2.0 libxml2 bison-native flex-native" 10DEPENDS = "glib-2.0 libxml2 bison-native flex-native"
11 11
12PR = "r1" 12PR = "r2"
13 13
14SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \ 14SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \
15 file://check_fix.patch \ 15 file://check_fix.patch \
@@ -23,6 +23,13 @@ inherit autotools pkgconfig gettext
23GSTREAMER_DEBUG ?= "--disable-debug" 23GSTREAMER_DEBUG ?= "--disable-debug"
24EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no --disable-examples --disable-tests --disable-valgrind ${GSTREAMER_DEBUG}" 24EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no --disable-examples --disable-tests --disable-valgrind ${GSTREAMER_DEBUG}"
25 25
26# apply gstreamer hack after Makefile.in.in in source is replaced by our version from
27# ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed
28# http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html
29oe_runconf_prepend() {
30 sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in
31}
32
26#do_compile_prepend () { 33#do_compile_prepend () {
27# mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/ 34# mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/
28#} 35#}