Config.in 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #menu "mpd............................... Music Player Daemon"
  2. config ADK_PACKAGE_MPD
  3. prompt "mpd............................... Music Player Daemon"
  4. tristate
  5. default n
  6. select ADK_PACKAGE_ALSA_LIB
  7. select ADK_PACKAGE_GLIB
  8. select ADK_PACKAGE_LIBCURL
  9. help
  10. MPD is a music player supporting flac, mp3 and ogg files.
  11. It is typically controlled over a network using one of it's many
  12. clients including mpc(console), gmpc(gnome), phpmp(php) etc.
  13. http://www.musicpd.org/
  14. config ADK_COMPILE_MPD_WITH_MP3
  15. prompt "MP3 support"
  16. bool
  17. default y
  18. depends on ADK_PACKAGE_MPD
  19. select ADK_PACKAGE_LIBMAD
  20. select ADK_PACKAGE_LIBID3TAG
  21. help
  22. Enable mp3 support (libmad).
  23. config ADK_COMPILE_MPD_WITH_MP4
  24. prompt "MP4/AAC support"
  25. bool
  26. default y
  27. depends on ADK_PACKAGE_MPD
  28. select ADK_PACKAGE_LIBFAAD2
  29. help
  30. Enable mp4/aac support (libfaad2).
  31. config ADK_COMPILE_MPD_OGG
  32. prompt "Ogg/Vorbis Support"
  33. tristate
  34. depends on ADK_PACKAGE_MPD
  35. select ADK_COMPILE_MPD_WITH_OGG if ADK_COMPILE_MPD_OGG_FLOAT
  36. select ADK_COMPILE_MPD_WITH_TREMOR if ADK_COMPILE_MPD_OGG_FIXED
  37. default y
  38. help
  39. Ogg/Vorbis support.
  40. choice
  41. prompt "Ogg type"
  42. depends on ADK_COMPILE_MPD_OGG
  43. config ADK_COMPILE_MPD_OGG_FLOAT
  44. bool "Ogg/Vorbis (floating point implementation)"
  45. config ADK_COMPILE_MPD_OGG_FIXED
  46. bool "Ogg/Vorbis (fixed point implementation)"
  47. endchoice
  48. config ADK_COMPILE_MPD_WITH_OGG
  49. bool
  50. default n
  51. depends on ADK_PACKAGE_MPD
  52. depends on ADK_COMPILE_MPD_OGG_FLOAT
  53. select ADK_PACKAGE_LIBOGG
  54. select ADK_PACKAGE_LIBVORBIS
  55. help
  56. Enable ogg vorbis support.
  57. config ADK_COMPILE_MPD_WITH_TREMOR
  58. bool
  59. default n
  60. depends on ADK_PACKAGE_MPD
  61. depends on ADK_COMPILE_MPD_OGG_FIXED
  62. select ADK_PACKAGE_LIBVORBISIDEC
  63. help
  64. Enable ogg support (tremor).
  65. Can not be used with shout plugin.
  66. config ADK_COMPILE_MPD_WITH_FLAC
  67. prompt "FLAC Support"
  68. bool
  69. default y
  70. depends on ADK_PACKAGE_MPD
  71. select ADK_PACKAGE_LIBFLAC
  72. help
  73. Enable flac support (libflac).
  74. config ADK_COMPILE_MPD_WITH_SHOUT
  75. prompt "Shout Support (Streaming support)"
  76. bool
  77. default y
  78. depends on ADK_PACKAGE_MPD
  79. depends on ADK_COMPILE_MPD_WITH_OGG
  80. select ADK_PACKAGE_LIBSHOUT
  81. select ADK_PACKAGE_LIBVORBISENC
  82. select ADK_PACKAGE_LIBLAME
  83. help
  84. Enable shout support (libshout).
  85. #endmenu