pangomm: new package
[Thomas: - rename to pangomm. - move next to pango in menuconfig. - add dependency to libsigc.] Signed-off-by: James Knight <james.knight@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
77a538b023
commit
9ccc5e9433
@ -862,6 +862,7 @@ menu "Graphics"
|
||||
source "package/opengl/Config.in"
|
||||
source "package/openjpeg/Config.in"
|
||||
source "package/pango/Config.in"
|
||||
source "package/pangomm/Config.in"
|
||||
source "package/pixman/Config.in"
|
||||
source "package/poppler/Config.in"
|
||||
source "package/powervr/Config.in"
|
||||
|
22
package/pangomm/Config.in
Normal file
22
package/pangomm/Config.in
Normal file
@ -0,0 +1,22 @@
|
||||
config BR2_PACKAGE_PANGOMM
|
||||
bool "pangomm"
|
||||
select BR2_PACKAGE_CAIROMM
|
||||
select BR2_PACKAGE_GLIBMM
|
||||
select BR2_PACKAGE_PANGO
|
||||
select BR2_PACKAGE_LIBSIGC
|
||||
depends on BR2_ARCH_HAS_ATOMICS # libcairomm/pango -> cairo
|
||||
depends on BR2_INSTALL_LIBSTDCPP # glibmm/pango
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # *mm/pango -> libglib2
|
||||
depends on BR2_USE_MMU # *mm/pango -> libglib2
|
||||
depends on BR2_USE_WCHAR # *mm/pango -> libglib2
|
||||
help
|
||||
The pangomm package is a set of C++ bindings for Pango.
|
||||
|
||||
http://www.gtkmm.org/
|
||||
|
||||
comment "libpangomm needs a toolchain w/ C++, wchar, threads, gcc >= 4.8"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_ARCH_HAS_ATOMICS
|
||||
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_USE_WCHAR \
|
||||
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
2
package/pangomm/pangomm.hash
Normal file
2
package/pangomm/pangomm.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# From http://ftp.gnome.org/pub/gnome/sources/pangomm/2.39/pangomm-2.39.1.sha256sum
|
||||
sha256 10c06bbf12a03963ffe9c697887b57c72f1dac1671d09dba45cecd25db5dc6ed pangomm-2.39.1.tar.xz
|
16
package/pangomm/pangomm.mk
Normal file
16
package/pangomm/pangomm.mk
Normal file
@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# pangomm
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PANGOMM_VERSION_MAJOR = 2.39
|
||||
PANGOMM_VERSION = $(PANGOMM_VERSION_MAJOR).1
|
||||
PANGOMM_SOURCE = pangomm-$(PANGOMM_VERSION).tar.xz
|
||||
PANGOMM_SITE = http://ftp.gnome.org/pub/gnome/sources/pangomm/$(PANGOMM_VERSION_MAJOR)
|
||||
PANGOMM_LICENSE = LGPLv2.1+ (library), GPLv2+ (tools)
|
||||
PANGOMM_LICENSE_FILES = COPYING COPYING.tools
|
||||
PANGOMM_INSTALL_STAGING = YES
|
||||
PANGOMM_DEPENDENCIES = glibmm cairomm libsigc pango host-pkgconf
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user