diff options
| author | Carlos Rafael Giani <crg7475@mailbox.org> | 2020-01-12 14:59:46 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-16 22:33:08 +0000 |
| commit | 41c498bded82d3c9216dd3c862e70890f67f2914 (patch) | |
| tree | bba769fe00ebcdcc1459378f0e3143777ca546e6 /meta | |
| parent | e957fbc5d82368934f721e3773bf3942c5177ed7 (diff) | |
| download | poky-41c498bded82d3c9216dd3c862e70890f67f2914.tar.gz | |
gstreamer1.0-plugins-good: Transition to meson based builds
* Removed autotools/M4 related patch
0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch.
* gtk-doc support is handled here, not in gstreamer1.0-plugins-common.inc,
since unlike with autotools, only some plugin set packages use gtk-doc.
* zlib is no longer optional, and glib anyway depends on zlib, therefore
it gets added to the DEPENDS list.
* gettext handling now part of gstreamer1.0-plugins-common.inc.
(From OE-Core rev: 10a824383fee1060f6335ceffedf48e165b6d5a2)
Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.1.bb | 79 |
1 files changed, 38 insertions, 41 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.1.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.1.bb index 0fa7b86ffe..a6eb9986dd 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.1.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.1.bb | |||
| @@ -1,8 +1,7 @@ | |||
| 1 | require gstreamer1.0-plugins.inc | 1 | require gstreamer1.0-plugins-common.inc |
| 2 | 2 | ||
| 3 | SRC_URI = " \ | 3 | SRC_URI = " \ |
| 4 | https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-${PV}.tar.xz \ | 4 | https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-${PV}.tar.xz \ |
| 5 | file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \ | ||
| 6 | " | 5 | " |
| 7 | 6 | ||
| 8 | SRC_URI[md5sum] = "515987ee763256840a11bd8ea098f2bf" | 7 | SRC_URI[md5sum] = "515987ee763256840a11bd8ea098f2bf" |
| @@ -15,42 +14,41 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ | |||
| 15 | file://common/coverage/coverage-report.pl;beginline=2;endline=17;md5=a4e1830fce078028c8f0974161272607 \ | 14 | file://common/coverage/coverage-report.pl;beginline=2;endline=17;md5=a4e1830fce078028c8f0974161272607 \ |
| 16 | file://gst/replaygain/rganalysis.c;beginline=1;endline=23;md5=b60ebefd5b2f5a8e0cab6bfee391a5fe" | 15 | file://gst/replaygain/rganalysis.c;beginline=1;endline=23;md5=b60ebefd5b2f5a8e0cab6bfee391a5fe" |
| 17 | 16 | ||
| 18 | DEPENDS += "gstreamer1.0-plugins-base libcap" | 17 | DEPENDS += "gstreamer1.0-plugins-base libcap zlib" |
| 19 | RPROVIDES_${PN}-pulseaudio += "${PN}-pulse" | 18 | RPROVIDES_${PN}-pulseaudio += "${PN}-pulse" |
| 20 | RPROVIDES_${PN}-soup += "${PN}-souphttpsrc" | 19 | RPROVIDES_${PN}-soup += "${PN}-souphttpsrc" |
| 21 | 20 | ||
| 22 | inherit gettext | ||
| 23 | |||
| 24 | PACKAGECONFIG ??= " \ | 21 | PACKAGECONFIG ??= " \ |
| 25 | ${GSTREAMER_ORC} \ | 22 | ${GSTREAMER_ORC} \ |
| 26 | ${@bb.utils.filter('DISTRO_FEATURES', 'pulseaudio x11', d)} \ | 23 | ${@bb.utils.filter('DISTRO_FEATURES', 'pulseaudio x11', d)} \ |
| 27 | bz2 cairo flac gdk-pixbuf gudev jpeg lame libpng mpg123 soup speex taglib v4l2 zlib \ | 24 | bz2 cairo flac gdk-pixbuf gudev jpeg lame libpng mpg123 soup speex taglib v4l2 \ |
| 28 | " | 25 | " |
| 29 | 26 | ||
| 30 | X11DEPENDS = "virtual/libx11 libsm libxrender libxfixes libxdamage" | 27 | X11DEPENDS = "virtual/libx11 libsm libxrender libxfixes libxdamage" |
| 28 | X11ENABLEOPTS = "-Dximagesrc=enabled -Dximagesrc-xshm=enabled -Dximagesrc-xfixes=enabled -Dximagesrc-xdamage=enabled" | ||
| 29 | X11DISABLEOPTS = "-Dximagesrc=disabled -Dximagesrc-xshm=disabled -Dximagesrc-xfixes=disabled -Dximagesrc-xdamage=disabled" | ||
| 31 | 30 | ||
| 32 | PACKAGECONFIG[bz2] = "--enable-bz2,--disable-bz2,bzip2" | 31 | PACKAGECONFIG[bz2] = "-Dbz2=enabled,-Dbz2=disabled,bzip2" |
| 33 | PACKAGECONFIG[cairo] = "--enable-cairo,--disable-cairo,cairo" | 32 | PACKAGECONFIG[cairo] = "-Dcairo=enabled,-Dcairo=disabled,cairo" |
| 34 | PACKAGECONFIG[dv1394] = "--enable-dv1394,--disable-dv1394,libiec61883 libavc1394 libraw1394" | 33 | PACKAGECONFIG[dv1394] = "-Ddv1394=enabled,-Ddv1394=disabled,libiec61883 libavc1394 libraw1394" |
| 35 | PACKAGECONFIG[flac] = "--enable-flac,--disable-flac,flac" | 34 | PACKAGECONFIG[flac] = "-Dflac=enabled,-Dflac=disabled,flac" |
| 36 | PACKAGECONFIG[gdk-pixbuf] = "--enable-gdk_pixbuf,--disable-gdk_pixbuf,gdk-pixbuf" | 35 | PACKAGECONFIG[gdk-pixbuf] = "-Dgdk-pixbuf=enabled,-Dgdk-pixbuf=disabled,gdk-pixbuf" |
| 37 | PACKAGECONFIG[gtk] = "--enable-gtk3,--disable-gtk3,gtk+3" | 36 | PACKAGECONFIG[gtk] = "-Dgtk3=enabled,-Dgtk3=disabled,gtk+3" |
| 38 | PACKAGECONFIG[gudev] = "--with-gudev,--without-gudev,libgudev" | 37 | PACKAGECONFIG[gudev] = "-Dv4l2-gudev=enabled,-Dv4l2-gudev=disabled,libgudev" |
| 39 | PACKAGECONFIG[jack] = "--enable-jack,--disable-jack,jack" | 38 | PACKAGECONFIG[jack] = "-Djack=enabled,-Djack=disabled,jack" |
| 40 | PACKAGECONFIG[jpeg] = "--enable-jpeg,--disable-jpeg,jpeg" | 39 | PACKAGECONFIG[jpeg] = "-Djpeg=enabled,-Djpeg=disabled,jpeg" |
| 41 | PACKAGECONFIG[lame] = "--enable-lame,--disable-lame,lame" | 40 | PACKAGECONFIG[lame] = "-Dlame=enabled,-Dlame=disabled,lame" |
| 42 | PACKAGECONFIG[libpng] = "--enable-libpng,--disable-libpng,libpng" | 41 | PACKAGECONFIG[libpng] = "-Dpng=enabled,-Dpng=disabled,libpng" |
| 43 | PACKAGECONFIG[libv4l2] = "--with-libv4l2,--without-libv4l2,v4l-utils" | 42 | PACKAGECONFIG[libv4l2] = "-Dv4l2-libv4l2=enabled,-Dv4l2-libv4l2=disabled,v4l-utils" |
| 44 | PACKAGECONFIG[mpg123] = "--enable-mpg123,--disable-mpg123,mpg123" | 43 | PACKAGECONFIG[mpg123] = "-Dmpg123=enabled,-Dmpg123=disabled,mpg123" |
| 45 | PACKAGECONFIG[pulseaudio] = "--enable-pulse,--disable-pulse,pulseaudio" | 44 | PACKAGECONFIG[pulseaudio] = "-Dpulse=enabled,-Dpulse=disabled,pulseaudio" |
| 46 | PACKAGECONFIG[soup] = "--enable-soup,--disable-soup,libsoup-2.4" | 45 | PACKAGECONFIG[soup] = "-Dsoup=enabled,-Dsoup=disabled,libsoup-2.4" |
| 47 | PACKAGECONFIG[speex] = "--enable-speex,--disable-speex,speex" | 46 | PACKAGECONFIG[speex] = "-Dspeex=enabled,-Dspeex=disabled,speex" |
| 48 | PACKAGECONFIG[taglib] = "--enable-taglib,--disable-taglib,taglib" | 47 | PACKAGECONFIG[taglib] = "-Dtaglib=enabled,-Dtaglib=disabled,taglib" |
| 49 | PACKAGECONFIG[v4l2] = "--enable-gst_v4l2 --enable-v4l2-probe,--disable-gst_v4l2" | 48 | PACKAGECONFIG[v4l2] = "-Dv4l2=enabled -Dv4l2-probe=true,-Dv4l2=disabled -Dv4l2-probe=false" |
| 50 | PACKAGECONFIG[vpx] = "--enable-vpx,--disable-vpx,libvpx" | 49 | PACKAGECONFIG[vpx] = "-Dvpx=enabled,-Dvpx=disabled,libvpx" |
| 51 | PACKAGECONFIG[wavpack] = "--enable-wavpack,--disable-wavpack,wavpack" | 50 | PACKAGECONFIG[wavpack] = "-Dwavpack=enabled,-Dwavpack=disabled,wavpack" |
| 52 | PACKAGECONFIG[x11] = "--enable-x,--disable-x,${X11DEPENDS}" | 51 | PACKAGECONFIG[x11] = "${X11ENABLEOPTS},${X11DISABLEOPTS},${X11DEPENDS}" |
| 53 | PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib" | ||
| 54 | 52 | ||
| 55 | # qt5 support is disabled, because it is not present in OE core, and requires more work than | 53 | # qt5 support is disabled, because it is not present in OE core, and requires more work than |
| 56 | # just adding a packageconfig (it requires access to moc, uic, rcc, and qmake paths). | 54 | # just adding a packageconfig (it requires access to moc, uic, rcc, and qmake paths). |
| @@ -58,19 +56,18 @@ PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib" | |||
| 58 | # in a gstreamer1.0-plugins-good bbappend). | 56 | # in a gstreamer1.0-plugins-good bbappend). |
| 59 | 57 | ||
| 60 | EXTRA_OECONF += " \ | 58 | EXTRA_OECONF += " \ |
| 61 | --enable-oss \ | 59 | -Daalib=disabled \ |
| 62 | --disable-aalib \ | 60 | -Ddirectsound=disabled \ |
| 63 | --disable-aalibtest \ | 61 | -Ddv=disabled \ |
| 64 | --disable-directsound \ | 62 | -Dlibcaca=disabled \ |
| 65 | --disable-libcaca \ | 63 | -Doss=enabled \ |
| 66 | --disable-libdv \ | 64 | -Doss4=disabled \ |
| 67 | --disable-oss4 \ | 65 | -Dosxaudio=disabled \ |
| 68 | --disable-osx_audio \ | 66 | -Dosxvideo=disabled \ |
| 69 | --disable-osx_video \ | 67 | -Dqt=disabled \ |
| 70 | --disable-qt \ | 68 | -Dshout2=disabled \ |
| 71 | --disable-shout2 \ | 69 | -Dtwolame=disabled \ |
| 72 | --disable-twolame \ | 70 | -Dwaveform=disabled \ |
| 73 | --disable-waveform \ | ||
| 74 | " | 71 | " |
| 75 | 72 | ||
| 76 | FILES_${PN}-equalizer += "${datadir}/gstreamer-1.0/presets/*.prs" | 73 | FILES_${PN}-equalizer += "${datadir}/gstreamer-1.0/presets/*.prs" |
