isdn4k-utils/scripts/config.in

100 lines
3.2 KiB
Plaintext
Raw Normal View History

#
1997-03-23 00:22:09 +00:00
# $Id: config.in,v 1.10 1997/03/23 00:22:10 fritz Exp $
1997-03-03 12:59:11 +00:00
#
# The whole configuration stuff is borrowed from the kernel
# configuration.
#
# For a description of the syntax of this configuration file,
# see the Menuconfig script.
#
if [ "`type -p xmkmf`" != "" ]; then
CONFIG_HASX11=y
fi
mainmenu_name "isdn4k-utils Configuration"
mainmenu_option next_comment
comment 'Code maturity level options'
bool 'Prompt for development and/or incomplete code' CONFIG_EXPERIMENTAL
endmenu
1997-03-03 04:00:33 +00:00
mainmenu_option next_comment
comment 'General configuration'
comment 'Build options'
1997-03-23 00:22:09 +00:00
dep_bool 'Build programs which need X11 installed' CONFIG_BUILDX11 $CONFIG_HASX11
1997-03-03 04:00:33 +00:00
comment 'Destination directories'
string 'Directory to install binaries' CONFIG_BINDIR /usr/bin
string 'Directory to install admin binaries' CONFIG_SBINDIR /sbin
string 'Directory to install man pages' CONFIG_MANDIR /usr/man
1997-03-03 04:00:33 +00:00
comment 'Runtime defaults'
string 'Write .pid files here' CONFIG_RUNDIR /var/run
string 'General configuration directory' CONFIG_I4LCONFDIR /etc/isdn
string 'Global configuration file' CONFIG_CONFFILE isdn.conf
string 'Global phone number file file' CONFIG_CALLERIDFILE callerid.conf
string 'User configuration file' CONFIG_USERCONFFILE ~/.isdn
1997-03-03 04:00:33 +00:00
comment 'Configuration library options'
string 'Default country prefix' CONFIG_COUNTRY_PREFIX +
string 'Default area prefix' CONFIG_AREA_PREFIX 0
choice 'Database for area codes' \
"Areacode CONFIG_LIB_AREACODE \
Avon CONFIG_LIB_AVON" Areacode
if [ "$CONFIG_LIB_AREACODE" = "y" ]; then
string 'Directory to install areacodes' CONFIG_AREACODE_DATA /usr/lib/isdn
fi
if [ "$CONFIG_LIB_AVON" = "y" ]; then
string 'Directory to install avon database' CONFIG_AVON_DATA /usr/lib/isdn
fi
endmenu
mainmenu_option nextcomment
1997-03-03 04:00:33 +00:00
comment 'Runtime configuration tools'
bool 'isdnctrl' CONFIG_ISDNCTRL
if [ "$CONFIG_ISDNCTRL" = "y" ]; then
1997-03-03 04:00:33 +00:00
bool 'Enable isdnctrl debug-option' CONFIG_ISDNCTRL_DEBUG
fi
bool 'iprofd' CONFIG_IPROFD
endmenu
mainmenu_option nextcomment
comment 'Card configuration tools'
bool 'telesctrl' CONFIG_TELESCTRL
bool 'hisaxctrl' CONFIG_HISAXCTRL
bool 'icnctrl' CONFIG_ICNCTRL
if [ "$CONFIG_ICNCTRL" = "y" ]; then
1997-03-03 04:00:33 +00:00
bool 'Enable icnctl debug-option' CONFIG_ICNCTRL_DEBUG
fi
bool 'pcbitctl' CONFIG_PCBITCTL
1997-03-05 21:30:09 +00:00
bool 'avmcapictrl' CONFIG_AVMCAPICTRL
endmenu
mainmenu_option nextcomment
comment 'Tools for monitoring activity'
bool 'imon' CONFIG_IMON
1997-03-03 04:00:33 +00:00
bool 'imontty' CONFIG_IMONTTY
bool 'isdnlog' CONFIG_ISDNLOG
1997-03-03 04:00:33 +00:00
if [ "$CONFIG_ISDNLOG" = "y" ] ; then
source isdnlog/.Config.in
fi
1997-03-22 21:36:02 +00:00
bool 'ipppstats' CONFIG_IPPPSTATS
1997-03-23 00:22:09 +00:00
dep_bool 'xisdnload' CONFIG_XISDNLOAD $CONFIG_BUILDX11
dep_bool 'xmonisdn' CONFIG_XMONISDN $CONFIG_BUILDX11
1997-03-03 04:00:33 +00:00
if [ "$CONFIG_XMONISDN" = "y" ] ; then
mainmenu_option nextcomment
comment 'Options for xmonisdn'
string 'NetUP command' CONFIG_XMONISDN_UPCMD '/sbin/netup'
string 'NetDOWN command' CONFIG_XMONISDN_DOWNCMD '/sbin/netdown'
endmenu
fi
endmenu
mainmenu_option nextcomment
comment 'Applications'
bool 'vbox' CONFIG_VBOX
if [ "$CONFIG_VBOX" = "y" ]; then
1997-03-03 04:00:33 +00:00
source vbox/.Config.in
fi
1997-03-22 21:36:02 +00:00
bool 'ipppd' CONFIG_IPPPD
endmenu
mainmenu_option nextcomment
1997-03-03 04:00:33 +00:00
comment 'Documentation'
bool 'Install generic pages' CONFIG_GENMAN
bool 'Generate FAQ' CONFIG_FAQ
if [ "$CONFIG_FAQ" = "y" ]; then
1997-03-03 04:00:33 +00:00
string 'Directory to install FAQ' CONFIG_FAQDIR /usr/doc/faq/isdn4linux
fi
endmenu