Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. config BR2_PACKAGE_PYTHON_PYGAME
  2. bool "pygame"
  3. depends on BR2_PACKAGE_PYTHON
  4. select BR2_PACKAGE_SDL
  5. help
  6. Pygame is a cross-platfrom library designed to make it easy to write
  7. multimedia software, such as games, in Python. Pygame requires the
  8. Python language and SDL multimedia library.
  9. It can also make use of several other popular libraries.
  10. http://www.pygame.org/
  11. if BR2_PACKAGE_PYTHON_PYGAME
  12. config BR2_PACKAGE_PYTHON_PYGAME_IMAGE
  13. bool "pygame.image"
  14. select BR2_PACKAGE_SDL_IMAGE
  15. select BR2_PACKAGE_SDL_IMAGE_PNG
  16. select BR2_PACKAGE_SDL_IMAGE_JPEG
  17. help
  18. pygame module for loading, saving and transfering images.
  19. Will autoselect sdl_image with png and jpeg support.
  20. config BR2_PACKAGE_PYTHON_PYGAME_FONT
  21. bool "pygame.font"
  22. select BR2_PACKAGE_SDL_TTF
  23. help
  24. pygame module for loading and rendering fonts.
  25. Will autoselect sdl_ttf.
  26. config BR2_PACKAGE_PYTHON_PYGAME_MIXER
  27. bool "pygame.mixer"
  28. select BR2_PACKAGE_SDL_MIXER
  29. help
  30. pygame module for loading and playing sounds.
  31. Will autoselect sdl_mixer.
  32. config BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC
  33. bool "pygame.mixer.music"
  34. depends on BR2_PACKAGE_PYTHON_PYGAME_MIXER
  35. help
  36. pygame module for controlling streamed audio
  37. config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
  38. bool "pygame.scrap"
  39. depends on BR2_PACKAGE_SDL_X11
  40. help
  41. pygame module for clipboard support (X11 needed)
  42. endif