summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2019-05-26 13:06:40 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-28 10:47:02 +0100
commitdeb421ffbc155156acc25846f0e41ebaa6d2559d (patch)
treecf43420f9cce68babfb72d1ff9dcd51593a0cc9c /meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb
parentdd816ac41cfb7de3a7318262b2e251f01a1e3c21 (diff)
downloadpoky-deb421ffbc155156acc25846f0e41ebaa6d2559d.tar.gz
gstreamer1.0-rtsp-server: upgrade to version 1.16.0
* 0001-Don-t-hardcode-libtool-name-when-using-introspection.patch Removed since this was fixed in 1.16.0 similarly to the fixes to -base and -bad in https://bugzilla.gnome.org/show_bug.cgi?id=726571 (From OE-Core rev: 2017a3292cac1fd4e7ea1ad4fef0d97806c31b95) Signed-off-by: Philippe Normand <philn@igalia.com> Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb
new file mode 100644
index 0000000000..042938b88e
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb
@@ -0,0 +1,34 @@
1SUMMARY = "A library on top of GStreamer for building an RTSP server"
2HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-rtsp-server/"
3SECTION = "multimedia"
4LICENSE = "LGPLv2"
5LIC_FILES_CHKSUM = "file://COPYING;md5=6762ed442b3822387a51c92d928ead0d"
6
7DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base"
8
9PNREAL = "gst-rtsp-server"
10
11SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz \
12 file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \
13 file://gtk-doc-tweaks.patch \
14 "
15
16SRC_URI[md5sum] = "adc4460239ec2eccf58ad9752ce53bfd"
17SRC_URI[sha256sum] = "198e9eec1a3e32dc810d3fbf3a714850a22c6288d4a5c8e802c5ff984af03f19"
18
19S = "${WORKDIR}/${PNREAL}-${PV}"
20
21inherit autotools pkgconfig upstream-version-is-even gobject-introspection gtk-doc
22
23EXTRA_OECONF = "--disable-examples --disable-tests"
24
25# Starting with 1.8.0 gst-rtsp-server includes dependency-less plugins as well
26LIBV = "1.0"
27require gst-plugins-package.inc
28
29delete_pkg_m4_file() {
30 # This m4 file is out of date and is missing PKG_CONFIG_SYSROOT_PATH tweaks which we need for introspection
31 rm "${S}/common/m4/pkg.m4" || true
32}
33
34do_configure[prefuncs] += " delete_pkg_m4_file"