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.

57 lines
2.1 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/package/base/vim/config.in
  9. # ROCK Linux is Copyright (C) 1998 - 2006 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. if pkgcheck vim X
  23. then
  24. menu_begin MENU_PKG_VIM 'VIM (Vi IMproved) Options'
  25. choice ROCKCFG_PKG_VIM_FEATURES huge \
  26. tiny almost_no_features_enabled,_not_even_multiple_windows \
  27. small few_features_enabled,_as_basic_as_possible \
  28. normal a_default_selection_of_features_enabled \
  29. big many_features_enabled,_as_rich_as_possible \
  30. huge all_possible_featues_enabled
  31. choice ROCKCFG_PKG_VIM_GUI auto \
  32. no GUI_style:_No_GUI auto GUI_style:_Autoselect \
  33. gtk GUI_style:_GTK gtk2 GUI_style:_GTK-2 \
  34. gnome GUI_style:_Gnome gnome2 GUI_style:_Gnome_2 \
  35. motif GUI_style:_Motif_/_Lesstif
  36. if [ "$ROCKCFG_PKG_VIM_GUI" != "no" ] ; then
  37. bool 'Build seperate CLI and GUI binaries' \
  38. ROCKCFG_PKG_VIM_TWO_BINARIES 1
  39. fi
  40. bool 'Create VI replacement sym-link' \
  41. ROCKCFG_PKG_VIM_IS_VI_REPLACEMENT 1
  42. pkgcheck perl5 X && \
  43. bool 'Include Perl interpreter in vim' \
  44. ROCKCFG_PKG_VIM_PERLINTERP 1
  45. pkgcheck python X && \
  46. bool 'Include Python interpreter in vim' \
  47. ROCKCFG_PKG_VIM_PYTHONINTERP 1
  48. pkgcheck ruby X && \
  49. bool 'Include Ruby interpreter in vim' \
  50. ROCKCFG_PKG_VIM_RUBYINTERP 1
  51. pkgcheck tcltk X && \
  52. bool 'Include TCL interpreter in vim' \
  53. ROCKCFG_PKG_VIM_TCLINTERP 1
  54. menu_end
  55. fi