Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 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 | |
| 7 | # gobject-introspection to get --disable-introspection into UNKNOWN_CONFIGURE_WHITELIST |
| 8 | inherit autotools pkgconfig gobject-introspection |
| 9 | |
| 10 | SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2" |
| 11 | |
| 12 | GSTREAMER_DEBUG ?= "--disable-debug" |
| 13 | EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples --disable-introspection" |
| 14 | |
| 15 | acpaths = "-I ${S}/common/m4 -I ${S}/m4" |
| 16 | |
| 17 | LIBV = "0.10" |
| 18 | require recipes-multimedia/gstreamer/gst-plugins-package.inc |
| 19 | |
| 20 | PACKAGES_DYNAMIC += "^${PN}-.*" |
| 21 | |
| 22 | # apply gstreamer hack after Makefile.in.in in source is replaced by our version from |
| 23 | # ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed |
| 24 | # http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html |
| 25 | oe_runconf_prepend() { |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 26 | if [ -e ${S}/po/Makefile.in.in ]; then |
| 27 | sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in |
| 28 | fi |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 29 | } |