blob: 329193486de5fca81eb225ea2c29779ea08e9941 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "GStreamer 1.0 multimedia framework"
2DESCRIPTION = "GStreamer is a multimedia framework for encoding and decoding video and sound. \
3It supports a wide range of formats including mp3, ogg, avi, mpeg and quicktime."
4HOMEPAGE = "http://gstreamer.freedesktop.org/"
5BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
6SECTION = "multimedia"
7LICENSE = "LGPLv2+"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009DEPENDS = "glib-2.0 glib-2.0-native libcap libxml2 bison-native flex-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011inherit autotools pkgconfig gettext upstream-version-is-even gobject-introspection gtk-doc
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050012
13# This way common/m4/introspection.m4 will come first
14# (it has a custom INTROSPECTION_INIT macro, and so must be used instead of our common introspection.m4 file)
15acpaths = "-I ${S}/common/m4 -I ${S}/m4"
16
17SRC_URI_append = " \
18 file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \
19"
20
21PACKAGECONFIG ??= ""
22
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050023PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
24PACKAGECONFIG[tests] = "--enable-tests,--disable-tests"
25PACKAGECONFIG[valgrind] = "--enable-valgrind,--disable-valgrind,valgrind,"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060026PACKAGECONFIG[gst-tracer-hooks] = "--enable-gst-tracer-hooks,--disable-gst-tracer-hooks,"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027PACKAGECONFIG[unwind] = "--with-unwind,--without-unwind,libunwind"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028PACKAGECONFIG[dw] = "--with-dw,--without-dw,elfutils"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050030EXTRA_OECONF = " \
31 --disable-dependency-tracking \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050032 --disable-examples \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050033"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
35CACHED_CONFIGUREVARS += "ac_cv_header_valgrind_valgrind_h=no"
36
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050037# musl libc generates warnings if <sys/poll.h> is included directly
38CACHED_CONFIGUREVARS += "ac_cv_header_sys_poll_h=no"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050040PACKAGES += "${PN}-bash-completion"
41
42FILES_${PN} += "${libdir}/gstreamer-1.0/*.so"
43FILES_${PN}-dev += "${libdir}/gstreamer-1.0/*.la ${libdir}/gstreamer-1.0/*.a ${libdir}/gstreamer-1.0/include"
44FILES_${PN}-bash-completion += "${datadir}/bash-completion/completions/ ${datadir}/bash-completion/helpers/gst*"
45
46RRECOMMENDS_${PN}_qemux86 += "kernel-module-snd-ens1370 kernel-module-snd-rawmidi"
47RRECOMMENDS_${PN}_qemux86-64 += "kernel-module-snd-ens1370 kernel-module-snd-rawmidi"
48
49delete_pkg_m4_file() {
50 # This m4 file is out of date and is missing PKG_CONFIG_SYSROOT_PATH tweaks which we need for introspection
51 rm "${S}/common/m4/pkg.m4" || true
Patrick Williamsc0f7c042017-02-23 20:41:17 -060052 rm -f "${S}/common/m4/gtk-doc.m4"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050053}
54
Patrick Williamsc0f7c042017-02-23 20:41:17 -060055# gstreamer is not using system-wide makefiles (which we patch in gtkdoc recipe,
56# but its own custom ones, which we have to patch here
57patch_gtk_doc_makefiles() {
58 # Patch the gtk-doc makefiles so that the qemu wrapper is used to run transient binaries
59 # instead of libtool wrapper or running them directly
60 # Also substitute a bogus plugin scanner, as trying to run the real one is causing issues during build on x86_64.
61 sed -i \
62 -e "s|GTKDOC_RUN =.*|GTKDOC_RUN = \$(top_builddir)/gtkdoc-qemuwrapper|" \
63 -e "s|\$(GTKDOC_EXTRA_ENVIRONMENT)|\$(GTKDOC_EXTRA_ENVIRONMENT) GST_PLUGIN_SCANNER_1_0=\$(top_builddir)/libs/gst/helpers/gst-plugin-scanner-dummy|" \
64 ${S}/common/gtk-doc*mak
65}
66
67do_configure[prefuncs] += " delete_pkg_m4_file patch_gtk_doc_makefiles"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050068
69do_compile_prepend() {
70 export GIR_EXTRA_LIBS_PATH="${B}/gst/.libs:${B}/libs/gst/base/.libs"
71}