summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>2020-02-26 13:35:50 +0000
committerOtavio Salvador <otavio@ossystems.com.br>2020-03-03 18:26:17 -0300
commit3da0f1b64dae97bab201872c26c6bb81e22628da (patch)
treeac8873bb126ab33287d8dbd8e58d3ca5034f258a
parent6802b457723b8aaa0fda20f608a34d7bc220942d (diff)
downloadmeta-freescale-3da0f1b64dae97bab201872c26c6bb81e22628da.tar.gz
gstreamer1.0-plugins-ugly: Transition to meson based builds
Following modifications were done: - Remove reference to autotools/M4 related patch: [0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch] - Convert all packageconfigs from using autotools syntax to meson - Replace EXTRA_OECONF with EXTRA_OEMESON - gettext handling now part of gstreamer1.0-plugins-common.inc. - Align fork recipe to match upstream from oe-core Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.0.bb23
1 files changed, 11 insertions, 12 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.0.bb b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.0.bb
index 7e6fcaae..2a1cc3fd 100644
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.0.bb
+++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.0.bb
@@ -8,32 +8,31 @@ LICENSE_FLAGS = "commercial"
8 8
9SRC_URI = " \ 9SRC_URI = " \
10 http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-${PV}.tar.xz \ 10 http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-${PV}.tar.xz \
11 file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \
12 " 11 "
13SRC_URI[md5sum] = "1ec343c58d4b17d682f7befa8453c11c" 12SRC_URI[md5sum] = "1ec343c58d4b17d682f7befa8453c11c"
14SRC_URI[sha256sum] = "e30964c5f031c32289e0b25e176c3c95a5737f2052dfc81d0f7427ef0233a4c2" 13SRC_URI[sha256sum] = "e30964c5f031c32289e0b25e176c3c95a5737f2052dfc81d0f7427ef0233a4c2"
15 14
16S = "${WORKDIR}/gst-plugins-ugly-${PV}" 15S = "${WORKDIR}/gst-plugins-ugly-${PV}"
17 16
18DEPENDS += "gstreamer1.0-plugins-base libid3tag" 17DEPENDS += "gstreamer1.0-plugins-base"
19 18
20inherit gettext 19GST_PLUGIN_SET_HAS_EXAMPLES = "0"
21 20
22PACKAGECONFIG ??= " \ 21PACKAGECONFIG ??= " \
23 ${GSTREAMER_ORC} \ 22 ${GSTREAMER_ORC} \
24 a52dec mpeg2dec \ 23 a52dec mpeg2dec \
25" 24"
26 25
27PACKAGECONFIG[a52dec] = "--enable-a52dec,--disable-a52dec,liba52" 26PACKAGECONFIG[a52dec] = "-Da52dec=enabled,-Da52dec=disabled,liba52"
28PACKAGECONFIG[amrnb] = "--enable-amrnb,--disable-amrnb,opencore-amr" 27PACKAGECONFIG[amrnb] = "-Damrnb=enabled,-Damrnb=disabled,opencore-amr"
29PACKAGECONFIG[amrwb] = "--enable-amrwb,--disable-amrwb,opencore-amr" 28PACKAGECONFIG[amrwb] = "-Damrwbdec=enabled,-Damrwbdec=disabled,opencore-amr"
30PACKAGECONFIG[cdio] = "--enable-cdio,--disable-cdio,libcdio" 29PACKAGECONFIG[cdio] = "-Dcdio=enabled,-Dcdio=disabled,libcdio"
31PACKAGECONFIG[dvdread] = "--enable-dvdread,--disable-dvdread,libdvdread" 30PACKAGECONFIG[dvdread] = "-Ddvdread=enabled,-Ddvdread=disabled,libdvdread"
32PACKAGECONFIG[mpeg2dec] = "--enable-mpeg2dec,--disable-mpeg2dec,mpeg2dec" 31PACKAGECONFIG[mpeg2dec] = "-Dmpeg2dec=enabled,-Dmpeg2dec=disabled,mpeg2dec"
33PACKAGECONFIG[x264] = "--enable-x264,--disable-x264,x264" 32PACKAGECONFIG[x264] = "-Dx264=enabled,-Dx264=disabled,x264"
34 33
35EXTRA_OECONF += " \ 34EXTRA_OEMESON += " \
36 --disable-sidplay \ 35 -Dsidplay=disabled \
37" 36"
38 37
39FILES_${PN}-amrnb += "${datadir}/gstreamer-1.0/presets/GstAmrnbEnc.prs" 38FILES_${PN}-amrnb += "${datadir}/gstreamer-1.0/presets/GstAmrnbEnc.prs"