summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gst-plugins.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins.inc')
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-plugins.inc28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
new file mode 100644
index 0000000000..26976092d6
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
@@ -0,0 +1,28 @@
1SUMMARY = "Plugins for the GStreamer multimedia framework"
2HOMEPAGE = "http://gstreamer.freedesktop.org/"
3BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
4SECTION = "multimedia"
5DEPENDS = "gstreamer"
6
7inherit autotools pkgconfig
8
9SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2"
10
11GSTREAMER_DEBUG ?= "--disable-debug"
12EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples "
13
14acpaths = "-I ${S}/common/m4 -I ${S}/m4"
15
16LIBV = "0.10"
17require gst-plugins-package.inc
18
19PACKAGES_DYNAMIC += "^${PN}-.*"
20
21# apply gstreamer hack after Makefile.in.in in source is replaced by our version from
22# ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed
23# http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html
24oe_runconf_prepend() {
25 if [ -e ${S}/po/Makefile.in.in ]; then
26 sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in
27 fi
28}