gst-plugins.inc 1.1 KB

1234567891011121314151617181920212223242526272829
  1. SUMMARY = "Plugins for the GStreamer multimedia framework"
  2. HOMEPAGE = "http://gstreamer.freedesktop.org/"
  3. BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
  4. SECTION = "multimedia"
  5. DEPENDS = "gstreamer"
  6. # gobject-introspection to get --disable-introspection into UNKNOWN_CONFIGURE_WHITELIST
  7. inherit autotools pkgconfig gobject-introspection
  8. SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2"
  9. GSTREAMER_DEBUG ?= "--disable-debug"
  10. EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples --disable-introspection"
  11. acpaths = "-I ${S}/common/m4 -I ${S}/m4"
  12. LIBV = "0.10"
  13. require recipes-multimedia/gstreamer/gst-plugins-package.inc
  14. PACKAGES_DYNAMIC += "^${PN}-.*"
  15. # apply gstreamer hack after Makefile.in.in in source is replaced by our version from
  16. # ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed
  17. # http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html
  18. oe_runconf_prepend() {
  19. if [ -e ${S}/po/Makefile.in.in ]; then
  20. sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in
  21. fi
  22. }