configs/warp7: Use common script for generating boot image
[buildroot-gz.git] / package / python-pygame / Config.in
blob932b0f12297d59b5d39d3b0a36029865302fe422
1 config BR2_PACKAGE_PYTHON_PYGAME
2         bool "python-pygame"
3         select BR2_PACKAGE_SDL
4         help
5           Pygame is a cross-platfrom library designed to make it easy to write
6           multimedia software, such as games, in Python. Pygame requires the
7           Python language and SDL multimedia library.
8           It can also make use of several other popular libraries.
10           http://www.pygame.org/
12 if BR2_PACKAGE_PYTHON_PYGAME
13 config BR2_PACKAGE_PYTHON_PYGAME_IMAGE
14         bool "pygame.image"
15         select BR2_PACKAGE_SDL_IMAGE
16         select BR2_PACKAGE_SDL_IMAGE_PNG
17         select BR2_PACKAGE_SDL_IMAGE_JPEG
18         help
19           pygame module for loading, saving and transfering images.
20           Will autoselect sdl_image with png and jpeg support.
22 config BR2_PACKAGE_PYTHON_PYGAME_EXAMPLES
23         bool "pygame.examples"
24         help
25           Include examples.
26           Selecting this option adds about 1.5 MB to the target file system.
28 config BR2_PACKAGE_PYTHON_PYGAME_FONT
29         bool "pygame.font"
30         select BR2_PACKAGE_SDL_TTF
31         help
32           pygame module for loading and rendering fonts.
33           Will autoselect sdl_ttf.
35 config BR2_PACKAGE_PYTHON_PYGAME_MIXER
36         bool "pygame.mixer"
37         select BR2_PACKAGE_SDL_MIXER
38         help
39           pygame module for loading and playing sounds.
40           Will autoselect sdl_mixer.
42 config BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC
43         bool "pygame.mixer.music"
44         depends on BR2_PACKAGE_PYTHON_PYGAME_MIXER
45         help
46           pygame module for controlling streamed audio
48 config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
49         bool "pygame.scrap"
50         depends on BR2_PACKAGE_SDL_X11
51         help
52           pygame module for clipboard support (X11 needed)
54 endif