mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.5 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/misc/output/mythtvosd/config.in
  9. # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. bool 'MythTV On-Screen-Display Output Plugin' ROCKCFG_OUTPUT_MYTHTVOSD 0
  23. if [ "$ROCKCFG_OUTPUT_MYTHTVOSD" = 1 ] ; then
  24. menu_begin OUTPUT_MYTHTVOSD_MENU 'MythTV OSD Output Configuration'
  25. block_begin 1
  26. comment ' '
  27. comment 'Please use the Help menu, it should answer all your questions.'
  28. comment ' '
  29. comment 'For this to function, you need to merge misc/output/mythtvosd/osd.xml with'
  30. comment 'your osd.xml in <mythtvprefix>/share/mythtv/themes/<yourosdtheme>/osd.xml'
  31. comment ' '
  32. text 'Where is you "mythtvosd" binary?' \
  33. ROCKCFG_OUTPUT_MYTHTVOSD_BIN "`which mythtvosd || echo '/usr/bin/mythtvosd'`"
  34. comment ' '
  35. comment '- What would you like to be informed about?'
  36. block_begin 2
  37. bool 'Generic header at section start' \
  38. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_HEADER 0
  39. bool 'Generic status messages' \
  40. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_STATUS 0
  41. bool 'Generic error messages' \
  42. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_ERROR 1
  43. comment ' '
  44. comment 'All texts will have the hostname prepended'
  45. comment ' '
  46. bool 'Package build refusals' \
  47. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_DENY 0
  48. [ $ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_DENY -eq 1 ] &&
  49. text 'Text to display when package is denied' \
  50. ROCKCFG_OUTPUT_MYTHTVOSD_TXT_PKG_DENY \
  51. '-[$1]-$2-\> rejected ($3)'
  52. comment ' '
  53. bool 'Package build starting messages' \
  54. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_START 1
  55. [ $ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_START -eq 1 ] &&
  56. text 'Text to display when package build starts' \
  57. ROCKCFG_OUTPUT_MYTHTVOSD_TXT_PKG_START \
  58. '-[$1]-$2/$3-\> starting.'
  59. comment ' '
  60. bool 'Package build finished messages' \
  61. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_FINISH 1
  62. [ $ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_FINISH -eq 1 ] &&
  63. text 'Text to display when package build is finished' \
  64. ROCKCFG_OUTPUT_MYTHTVOSD_TXT_PKG_FINISH \
  65. '-[$1]-$2/$3-\> finished succesfully.'
  66. comment ' '
  67. bool 'Package build aborted messages' \
  68. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_ABORT 1
  69. [ $ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_PKG_ABORT -eq 1 ] &&
  70. text 'Text to display when package build has been aborted' \
  71. ROCKCFG_OUTPUT_MYTHTVOSD_TXT_PKG_ABORT \
  72. '-[$1]-$2/$3-\> aborted!'
  73. comment ' '
  74. bool 'Package build errorquote messages' \
  75. ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_ERRORQUOTE 0
  76. [ $ROCKCFG_OUTPUT_MYTHTVOSD_ENABLE_ERRORQUOTE -eq 1 ] &&
  77. text 'Text to display when the logfile would be quoted' \
  78. ROCKCFG_OUTPUT_MYTHTVOSD_TXT_ERRORQUOTE \
  79. 'An Error occured. Please have a look at the logfile!'
  80. block_end
  81. block_end
  82. menu_end
  83. fi