Config.in 1.1 KB

1234567891011121314151617181920212223242526272829
  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_NUMPY # runtime
  13. select BR2_PACKAGE_PYTHON_PYPARSING # runtime
  14. select BR2_PACKAGE_PYTHON3_ZLIB # runtime
  15. select BR2_PACKAGE_ZLIB # runtime
  16. help
  17. Matplotlib strives to produce publication quality 2D
  18. graphics for interactive graphing, scientific publishing,
  19. user interface development and web application servers
  20. targeting multiple user interfaces and hardcopy output
  21. formats.
  22. https://matplotlib.org/
  23. comment "python-matplotlib needs a toolchain w/ C++"
  24. depends on !BR2_INSTALL_LIBSTDCPP
  25. comment "python-matplotlib needs glibc or musl"
  26. depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)