66bb10b7b0
This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
825 B
Plaintext
21 lines
825 B
Plaintext
config BR2_PACKAGE_MIDORI
|
|
bool "midori"
|
|
select BR2_PACKAGE_WEBKIT
|
|
select BR2_PACKAGE_LIBSEXY
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
depends on BR2_PACKAGE_LIBGTK2
|
|
depends on BR2_INSTALL_LIBSTDCPP # webkit
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # webkit -> enchant -> libglib2
|
|
depends on BR2_USE_WCHAR # webkit
|
|
depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel || \
|
|
BR2_powerpc || BR2_sh || BR2_sparc || BR2_x86_64) # webkit
|
|
help
|
|
Midori is a lightweight web browser based on WebKit
|
|
|
|
http://software.twotoasts.de/?page=midori
|
|
|
|
comment "midori needs libgtk2 and a toolchain w/ C++, wchar, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_LIBGTK2
|