mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
32
package/gtkmm3/Config.in
Normal file
32
package/gtkmm3/Config.in
Normal file
@@ -0,0 +1,32 @@
|
||||
comment "gtkmm3 needs libgtk3 and a toolchain w/ C++, wchar, threads, gcc >= 4.9, host gcc >= 4.8"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
|
||||
|| !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_LIBGTK3 \
|
||||
|| !BR2_HOST_GCC_AT_LEAST_4_8 \
|
||||
|| !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_GTKMM3
|
||||
bool "gtkmm3"
|
||||
# Broken on existing external/internal nios2 toolchains,
|
||||
# revisit when they are upgraded with at least Binutils >= 2.26
|
||||
# and GCC >= 5.3.
|
||||
# https://sourceware.org/bugzilla/show_bug.cgi?id=19405
|
||||
depends on !BR2_nios2
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pangomm, libgtk3 -> pango -> harfbuzz
|
||||
depends on BR2_INSTALL_LIBSTDCPP # glibmm, libpangomm -> glibmm/pango
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
||||
depends on BR2_HOST_GCC_AT_LEAST_4_8 # libgtk3 -> pango -> harfbuzz
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # *mm/libgtk3 -> libglib2
|
||||
depends on BR2_USE_MMU # *mm/libgtk3 -> libglib2
|
||||
depends on BR2_USE_WCHAR # *mm/libgtk3 -> libglib2
|
||||
depends on BR2_PACKAGE_LIBGTK3
|
||||
select BR2_PACKAGE_ATKMM
|
||||
select BR2_PACKAGE_CAIROMM
|
||||
select BR2_PACKAGE_GLIBMM
|
||||
select BR2_PACKAGE_LIBSIGC
|
||||
select BR2_PACKAGE_PANGOMM
|
||||
help
|
||||
The gtkmm3 package is a set of C++ bindings for GTK 3.
|
||||
|
||||
http://www.gtkmm.org/
|
||||
2
package/gtkmm3/gtkmm3.hash
Normal file
2
package/gtkmm3/gtkmm3.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.22/gtkmm-3.22.0.sha256sum
|
||||
sha256 05da4d4b628fb20c8384630ddf478a3b5562952b2d6181fe28d58f6cbc0514f5 gtkmm-3.22.0.tar.xz
|
||||
16
package/gtkmm3/gtkmm3.mk
Normal file
16
package/gtkmm3/gtkmm3.mk
Normal file
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# gtkmm3
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GTKMM3_VERSION_MAJOR = 3.22
|
||||
GTKMM3_VERSION = $(GTKMM3_VERSION_MAJOR).0
|
||||
GTKMM3_SOURCE = gtkmm-$(GTKMM3_VERSION).tar.xz
|
||||
GTKMM3_SITE = http://ftp.gnome.org/pub/gnome/sources/gtkmm/$(GTKMM3_VERSION_MAJOR)
|
||||
GTKMM3_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (tools)
|
||||
GTKMM3_LICENSE_FILES = COPYING COPYING.tools
|
||||
GTKMM3_INSTALL_STAGING = YES
|
||||
GTKMM3_DEPENDENCIES = atkmm cairomm glibmm libgtk3 libsigc pangomm host-pkgconf
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user