Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -0,0 +1,29 @@
config BR2_PACKAGE_GSTREAMER1_MM
bool "gstreamer1-mm"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # glibmm
depends on BR2_INSTALL_LIBSTDCPP # glibmm
depends on BR2_USE_WCHAR # glibmm -> libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # glibmm -> libglib2
select BR2_PACKAGE_GLIBMM
select BR2_PACKAGE_GSTREAMER1_CHECK
select BR2_PACKAGE_GST1_PLUGINS_BASE
help
gstreamermm provides C++ bindings for the GStreamer streaming
multimedia library (http://gstreamer.freedesktop.org). With
gstreamermm it is possible to develop applications that work
with multimedia in C++.
gstreamermm is developed over glibmm, libsigc++ and libxml++
and the functionalities they provide. This means that, among
other things, referencing and unreferencing of GObjects is
handled automatically via glibmm's automatic pointer class,
Glib::RefPtr, and libsigc++'s slots are used for callbacks and
signals.
https://gstreamer.freedesktop.org/bindings/cplusplus.html
comment "gstreamer1-mm needs a toolchain w/ C++, wchar, threads, gcc >= 4.9"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,6 @@
# From http://ftp.gnome.org/pub/gnome/sources/gstreamermm/1.10/gstreamermm-1.10.0.sha256sum
sha256 be58fe9ef7d7e392568ec85e80a84f4730adbf91fb0355ff7d7c616675ea8d60 gstreamermm-1.10.0.tar.xz
# Locally computed
sha256 7c78a8d7fc6781d51402d5a6036bedda9cffb0e5d28757e25d54d6eacbb1949f COPYING
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 COPYING.examples

View File

@@ -0,0 +1,24 @@
################################################################################
#
# gstreamer1-mm
#
################################################################################
GSTREAMER1_MM_VERSION_MAJOR = 1.10
GSTREAMER1_MM_VERSION = $(GSTREAMER1_MM_VERSION_MAJOR).0
GSTREAMER1_MM_SITE = http://ftp.gnome.org/pub/gnome/sources/gstreamermm/$(GSTREAMER1_MM_VERSION_MAJOR)
GSTREAMER1_MM_SOURCE = gstreamermm-$(GSTREAMER1_MM_VERSION).tar.xz
GSTREAMER1_MM_LICENSE = LGPL-2.1+ (library), GPL-2.0 (examples)
GSTREAMER1_MM_LICENSE_FILES = COPYING COPYING.examples
GSTREAMER1_MM_INSTALL_STAGING = YES
GSTREAMER1_MM_DEPENDENCIES += \
glibmm \
gstreamer1 \
gst1-plugins-base
GSTREAMER1_MM_CONF_OPTS += \
--disable-gl \
--enable-unittests=no \
--disable-deprecated-api
$(eval $(autotools-package))