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.inc30
1 files changed, 30 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..b2d3d3c6a1
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
@@ -0,0 +1,30 @@
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
9FILESPATH =. "${FILE_DIRNAME}/gst-plugins:"
10
11SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2"
12
13GSTREAMER_DEBUG ?= "--disable-debug"
14EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples "
15
16acpaths = "-I ${S}/common/m4 -I ${S}/m4"
17
18LIBV = "0.10"
19require gst-plugins-package.inc
20
21PACKAGES_DYNAMIC += "^${PN}-.*"
22
23# apply gstreamer hack after Makefile.in.in in source is replaced by our version from
24# ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed
25# http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html
26oe_runconf_prepend() {
27 if [ -e ${S}/po/Makefile.in.in ]; then
28 sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in
29 fi
30}