]>
Commit | Line | Data |
---|---|---|
d106a63d EA |
1 | config BR2_PACKAGE_PANGO |
2 | bool "pango" | |
b730010c | 3 | depends on BR2_USE_WCHAR # glib2 |
51788521 | 4 | depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 |
1c4dbb5f | 5 | depends on BR2_INSTALL_LIBSTDCPP # freetype support |
d106a63d EA |
6 | select BR2_PACKAGE_LIBGLIB2 |
7 | select BR2_PACKAGE_EXPAT | |
8 | select BR2_PACKAGE_CAIRO | |
3ba6d381 TP |
9 | select BR2_PACKAGE_FONTCONFIG |
10 | select BR2_PACKAGE_FREETYPE | |
dbdb4e33 | 11 | select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE |
3ba6d381 | 12 | select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7 |
d106a63d EA |
13 | help |
14 | Pango is a library for laying out and rendering of text, with an | |
15 | emphasis on internationalization. Pango can be used anywhere that | |
16 | text layout is needed, though most of the work on Pango so far has | |
17 | been done in the context of the GTK+ widget toolkit. Pango forms the | |
18 | core of text and font handling for GTK+-2.x. | |
19 | ||
20 | http://www.pango.org/ | |
b730010c | 21 | |
51788521 SG |
22 | comment "pango requires a toolchain with WCHAR, threading and C++ support" |
23 | depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ | |
24 | !BR2_INSTALL_LIBSTDCPP |