Config.in 1.1 KB

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_PYTHON_MATPLOTLIB
  2. bool "python-matplotlib"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_PACKAGE_PYTHON3
  5. depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  6. depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
  7. select BR2_PACKAGE_FREETYPE # runtime
  8. select BR2_PACKAGE_LIBPNG # runtime
  9. select BR2_PACKAGE_PYTHON_CYCLER
  10. select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
  11. select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
  12. select BR2_PACKAGE_PYTHON_KIWISOLVER # runtime
  13. select BR2_PACKAGE_PYTHON_NUMPY # runtime
  14. select BR2_PACKAGE_PYTHON_PYPARSING # runtime
  15. select BR2_PACKAGE_PYTHON3_ZLIB # runtime
  16. select BR2_PACKAGE_ZLIB # runtime
  17. help
  18. Matplotlib strives to produce publication quality 2D
  19. graphics for interactive graphing, scientific publishing,
  20. user interface development and web application servers
  21. targeting multiple user interfaces and hardcopy output
  22. formats.
  23. https://matplotlib.org/
  24. comment "python-matplotlib needs a toolchain w/ C++"
  25. depends on !BR2_INSTALL_LIBSTDCPP
  26. comment "python-matplotlib needs glibc or musl"
  27. depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)