|
|
@@ -1,16 +1,20 @@
|
|
|
config BR2_PACKAGE_PCMANFM
|
|
|
bool "pcmanfm"
|
|
|
- depends on BR2_PACKAGE_XORG7
|
|
|
- depends on BR2_USE_WCHAR # libglib2
|
|
|
- depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
|
- depends on BR2_USE_MMU # libglib2
|
|
|
- depends on BR2_INSTALL_LIBSTDCPP # libgtk2
|
|
|
- depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libgtk2 -> pango -> harfbuzz
|
|
|
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libgtk2 -> pango -> harfbuzz
|
|
|
+ depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS # libfm
|
|
|
+ depends on BR2_USE_WCHAR # libfm
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_THREADS # libfm
|
|
|
+ depends on BR2_USE_MMU # libfm
|
|
|
+ depends on BR2_INSTALL_LIBSTDCPP # libfm
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libfm
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libfm
|
|
|
+ depends on BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL # libfm
|
|
|
+ depends on BR2_PACKAGE_XORG7 # libfm
|
|
|
+ depends on BR2_PACKAGE_HAS_LIBGL # libfm
|
|
|
select BR2_PACKAGE_LIBFM
|
|
|
select BR2_PACKAGE_MENU_CACHE
|
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
|
- select BR2_PACKAGE_LIBGTK2 if !BR2_PACKAGE_LIBGTK3_X11
|
|
|
+ select BR2_PACKAGE_LIBGTK3
|
|
|
+ select BR2_PACKAGE_LIBGTK3_X11
|
|
|
help
|
|
|
PCMan File Manager (PCManFM) is a file manager application
|
|
|
developed by Hong Jen Yee from Taiwan which is meant to be a
|
|
|
@@ -18,10 +22,15 @@ config BR2_PACKAGE_PCMANFM
|
|
|
|
|
|
http://wiki.lxde.org/en/PCManFM
|
|
|
|
|
|
-comment "pcmanfm needs a toolchain w/ wchar, threads, C++, gcc >= 4.9"
|
|
|
+comment "pcmanfm a toolchain w/ wchar, threads, C++, gcc >= 4.9"
|
|
|
+ depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
|
|
|
depends on BR2_USE_MMU
|
|
|
- depends on BR2_PACKAGE_XORG7
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
- depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
|
|
|
- !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
|
|
|
- !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
+ !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
|
+
|
|
|
+comment "pcmanfm needs X.org with an OpenGL backend"
|
|
|
+ depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
|
|
|
+ depends on BR2_USE_MMU
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
+ depends on !BR2_PACKAGE_XORG7 || BR2_PACKAGE_HAS_LIBGL
|