|
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
|
|
#
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
# Please add additional copyright information _after_ the line containing
|
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
|
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
|
|
#
|
|
# ROCK Linux: rock-src/package/base/vim/config.in
|
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version. A copy of the GNU General Public
|
|
# License can be found at Documentation/COPYING.
|
|
#
|
|
# Many people helped and are helping developing ROCK Linux. Please
|
|
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
|
|
# file for details.
|
|
#
|
|
# --- ROCK-COPYRIGHT-NOTE-END ---
|
|
|
|
if pkgcheck vim X
|
|
then
|
|
menu_begin MENU_PKG_VIM 'VIM (Vi IMproved) Options'
|
|
choice ROCKCFG_PKG_VIM_FEATURES huge \
|
|
tiny almost_no_features_enabled,_not_even_multiple_windows \
|
|
small few_features_enabled,_as_basic_as_possible \
|
|
normal a_default_selection_of_features_enabled \
|
|
big many_features_enabled,_as_rich_as_possible \
|
|
huge all_possible_featues_enabled
|
|
choice ROCKCFG_PKG_VIM_GUI auto \
|
|
no GUI_style:_No_GUI auto GUI_style:_Autoselect \
|
|
gtk GUI_style:_GTK gtk2 GUI_style:_GTK-2 \
|
|
gnome GUI_style:_Gnome gnome2 GUI_style:_Gnome_2 \
|
|
motif GUI_style:_Motif_/_Lesstif
|
|
if [ "$ROCKCFG_PKG_VIM_GUI" != "no" ] ; then
|
|
bool 'Build seperate CLI and GUI binaries' \
|
|
ROCKCFG_PKG_VIM_TWO_BINARIES 1
|
|
fi
|
|
bool 'Create VI replacement sym-link' \
|
|
ROCKCFG_PKG_VIM_IS_VI_REPLACEMENT 1
|
|
pkgcheck perl5 X && \
|
|
bool 'Include Perl interpreter in vim' \
|
|
ROCKCFG_PKG_VIM_PERLINTERP 1
|
|
pkgcheck python X && \
|
|
bool 'Include Python interpreter in vim' \
|
|
ROCKCFG_PKG_VIM_PYTHONINTERP 1
|
|
pkgcheck ruby X && \
|
|
bool 'Include Ruby interpreter in vim' \
|
|
ROCKCFG_PKG_VIM_RUBYINTERP 1
|
|
pkgcheck tcltk X && \
|
|
bool 'Include TCL interpreter in vim' \
|
|
ROCKCFG_PKG_VIM_TCLINTERP 1
|
|
menu_end
|
|
fi
|
|
|