xref: /OK3568_Linux_fs/buildroot/package/python-pygame/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
6	  to write multimedia software, such as games, in
7	  Python. Pygame requires the Python language and SDL
8	  multimedia library.
9	  It can also make use of several other popular libraries.
10
11	  http://www.pygame.org/
12
13if BR2_PACKAGE_PYTHON_PYGAME
14config 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
23config 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
28	  system.
29
30config BR2_PACKAGE_PYTHON_PYGAME_FONT
31	bool "pygame.font"
32	select BR2_PACKAGE_SDL_TTF
33	help
34	  pygame module for loading and rendering fonts.
35	  Will autoselect sdl_ttf.
36
37config BR2_PACKAGE_PYTHON_PYGAME_MIXER
38	bool "pygame.mixer"
39	select BR2_PACKAGE_SDL_MIXER
40	help
41	  pygame module for loading and playing sounds.
42	  Will autoselect sdl_mixer.
43
44config BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC
45	bool "pygame.mixer.music"
46	depends on BR2_PACKAGE_PYTHON_PYGAME_MIXER
47	help
48	  pygame module for controlling streamed audio
49
50config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
51	bool "pygame.scrap"
52	depends on BR2_PACKAGE_SDL_X11
53	help
54	  pygame module for clipboard support (X11 needed)
55
56endif
57