f72ee319f092aadd49deb71248b0eb8d8b98b401
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / python-pygame / Config.in
1 config BR2_PACKAGE_PYTHON_PYGAME
2         bool "python-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
11           http://www.pygame.org/
12
13 if BR2_PACKAGE_PYTHON_PYGAME
14 config BR2_PACKAGE_PYTHON_PYGAME_IMAGE
15         bool "pygame.image"
16         select BR2_PACKAGE_SDL_IMAGE
17         select BR2_PACKAGE_SDL_IMAGE_PNG
18         select BR2_PACKAGE_SDL_IMAGE_JPEG
19         help
20           pygame module for loading, saving and transfering images.
21           Will autoselect sdl_image with png and jpeg support.
22
23 config BR2_PACKAGE_PYTHON_PYGAME_EXAMPLES
24         bool "pygame.examples"
25         help
26           Include examples.
27           Selecting this option adds about 1.5 MB to the target file system.
28
29 config BR2_PACKAGE_PYTHON_PYGAME_FONT
30         bool "pygame.font"
31         select BR2_PACKAGE_SDL_TTF
32         help
33           pygame module for loading and rendering fonts.
34           Will autoselect sdl_ttf.
35
36 config BR2_PACKAGE_PYTHON_PYGAME_MIXER
37         bool "pygame.mixer"
38         select BR2_PACKAGE_SDL_MIXER
39         help
40           pygame module for loading and playing sounds.
41           Will autoselect sdl_mixer.
42
43 config BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC
44         bool "pygame.mixer.music"
45         depends on BR2_PACKAGE_PYTHON_PYGAME_MIXER
46         help
47           pygame module for controlling streamed audio
48
49 config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
50         bool "pygame.scrap"
51         depends on BR2_PACKAGE_SDL_X11
52         help
53           pygame module for clipboard support (X11 needed)
54
55 endif