update buildroot to 2017.02.11
This commit is contained in:
16
bsp/buildroot-2017.02.11/package/gdk-pixbuf/Config.in
Normal file
16
bsp/buildroot-2017.02.11/package/gdk-pixbuf/Config.in
Normal file
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_GDK_PIXBUF
|
||||
bool "gdk-pixbuf"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
help
|
||||
Gdk-Pixbuf is an image loader and scaler. It uses GObject
|
||||
and the GLib, to integrate well with GNOME applications.
|
||||
|
||||
http://www.gtk.org/
|
||||
|
||||
comment "gdk-pixbuf needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,4 @@
|
||||
# From http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.36/gdk-pixbuf-2.36.10.sha256sum
|
||||
sha256 f8f6fa896b89475c73b6e9e8d2a2b062fc359c4b4ccb8e96470d6ab5da949ace gdk-pixbuf-2.36.10.tar.xz
|
||||
# Locally calculated
|
||||
sha256 d245807f90032872d1438d741ed21e2490e1175dc8aa3afa5ddb6c8e529b58e5 COPYING
|
||||
89
bsp/buildroot-2017.02.11/package/gdk-pixbuf/gdk-pixbuf.mk
Normal file
89
bsp/buildroot-2017.02.11/package/gdk-pixbuf/gdk-pixbuf.mk
Normal file
@@ -0,0 +1,89 @@
|
||||
################################################################################
|
||||
#
|
||||
# gdk-pixbuf
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GDK_PIXBUF_VERSION_MAJOR = 2.36
|
||||
GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).10
|
||||
GDK_PIXBUF_SOURCE = gdk-pixbuf-$(GDK_PIXBUF_VERSION).tar.xz
|
||||
GDK_PIXBUF_SITE = http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$(GDK_PIXBUF_VERSION_MAJOR)
|
||||
GDK_PIXBUF_LICENSE = LGPLv2+
|
||||
GDK_PIXBUF_LICENSE_FILES = COPYING
|
||||
GDK_PIXBUF_INSTALL_STAGING = YES
|
||||
GDK_PIXBUF_DEPENDENCIES = \
|
||||
host-gdk-pixbuf host-libglib2 host-pkgconf \
|
||||
libglib2 $(if $(BR2_ENABLE_LOCALE),,libiconv)
|
||||
HOST_GDK_PIXBUF_DEPENDENCIES = host-libpng host-pkgconf host-libglib2
|
||||
|
||||
GDK_PIXBUF_CONF_ENV = \
|
||||
ac_cv_path_GLIB_GENMARSHAL=$(LIBGLIB2_HOST_BINARY) \
|
||||
gio_can_sniff=no
|
||||
|
||||
HOST_GDK_PIXBUF_CONF_ENV = \
|
||||
gio_can_sniff=no
|
||||
|
||||
GDK_PIXBUF_CONF_OPTS = --disable-glibtest
|
||||
|
||||
ifneq ($(BR2_PACKAGE_LIBPNG),y)
|
||||
GDK_PIXBUF_CONF_OPTS += --without-libpng
|
||||
else
|
||||
GDK_PIXBUF_DEPENDENCIES += libpng
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_PACKAGE_JPEG),y)
|
||||
HOST_GDK_PIXBUF_CONF_OPTS += --without-libjpeg
|
||||
GDK_PIXBUF_CONF_OPTS += --without-libjpeg
|
||||
else
|
||||
GDK_PIXBUF_DEPENDENCIES += jpeg
|
||||
HOST_GDK_PIXBUF_DEPENDENCIES += host-libjpeg
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_PACKAGE_TIFF),y)
|
||||
GDK_PIXBUF_CONF_OPTS += --without-libtiff
|
||||
HOST_GDK_PIXBUF_CONF_OPTS += --without-libtiff
|
||||
else
|
||||
GDK_PIXBUF_DEPENDENCIES += tiff
|
||||
GDK_PIXBUF_CONF_ENV += \
|
||||
LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs libtiff-4`"
|
||||
HOST_GDK_PIXBUF_DEPENDENCIES += host-tiff
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
||||
GDK_PIXBUF_CONF_OPTS += --with-x11
|
||||
GDK_PIXBUF_DEPENDENCIES += xlib_libX11
|
||||
endif
|
||||
|
||||
# gdk-pixbuf requires the loaders.cache file populated to work properly
|
||||
# Rather than doing so at runtime, since the fs can be read-only, do so
|
||||
# here after building and installing to target.
|
||||
# And since the cache file will contain absolute host directory names we
|
||||
# need to sanitize (strip) them.
|
||||
ifeq ($(BR2_STATIC_LIBS),)
|
||||
define GDK_PIXBUF_UPDATE_CACHE
|
||||
GDK_PIXBUF_MODULEDIR=$(HOST_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders \
|
||||
$(HOST_DIR)/usr/bin/gdk-pixbuf-query-loaders \
|
||||
> $(TARGET_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
||||
$(SED) "s,$(HOST_DIR),,g" \
|
||||
$(TARGET_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
||||
endef
|
||||
GDK_PIXBUF_POST_INSTALL_TARGET_HOOKS += GDK_PIXBUF_UPDATE_CACHE
|
||||
endif
|
||||
|
||||
# Tests don't build correctly with uClibc
|
||||
define GDK_PIXBUF_DISABLE_TESTS
|
||||
$(SED) 's/ tests//' $(@D)/Makefile.in
|
||||
endef
|
||||
GDK_PIXBUF_POST_PATCH_HOOKS += GDK_PIXBUF_DISABLE_TESTS
|
||||
|
||||
# Target gdk-pixbuf needs loaders.cache populated to build for the
|
||||
# thumbnailer. Use the host-built since it matches the target options
|
||||
# regarding mime types (which is the used information).
|
||||
define GDK_PIXBUF_COPY_LOADERS_CACHE
|
||||
cp -f $(HOST_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \
|
||||
$(@D)/gdk-pixbuf
|
||||
endef
|
||||
GDK_PIXBUF_PRE_BUILD_HOOKS += GDK_PIXBUF_COPY_LOADERS_CACHE
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user