1999-04-18 15:16:29 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
# WINE Installation script
|
2000-10-29 19:02:53 +01:00
|
|
|
|
# Can do almost everything from compiling to configuring...
|
1999-04-18 15:16:29 +02:00
|
|
|
|
|
|
|
|
|
# Mar 31 1999 - Ove K<>ven
|
|
|
|
|
# First version
|
2000-02-25 21:51:09 +01:00
|
|
|
|
# Dec 9 1999 - Ove K<>ven
|
|
|
|
|
# require Xpm
|
|
|
|
|
# Feb 25 2000 - Ove K<>ven
|
|
|
|
|
# auto-add /usr/local/lib to /etc/ld.so.conf
|
2000-03-04 20:13:52 +01:00
|
|
|
|
# Mar 2 2000 - Ove K<>ven
|
|
|
|
|
# source rather than grep config.cache
|
|
|
|
|
# use sourced config.cache to start ldconfig
|
|
|
|
|
# reconfigure if config.cache doesn't exist
|
2000-04-08 22:20:21 +02:00
|
|
|
|
# Mar 30 2000 - Ove K<>ven
|
|
|
|
|
# autoconfigure no-windows installs
|
|
|
|
|
# do not install registry on real-windows installs
|
|
|
|
|
# some support for binary package installs
|
|
|
|
|
# set and tell user about LD_LIBRARY_PATH if necessary
|
|
|
|
|
# set EXTRA_LD_LIBRARY_PATH in wine.conf
|
2000-04-15 22:37:14 +02:00
|
|
|
|
# Apr 9 2000 - Ove K<>ven
|
|
|
|
|
# make root's registry global (system-default)
|
2000-05-10 00:32:42 +02:00
|
|
|
|
# May 9 2000 - Ove K<>ven
|
|
|
|
|
# use ttydrv when running regapi, so we don't have to run from X
|
|
|
|
|
# change debugger path in registry
|
2000-10-29 19:02:53 +01:00
|
|
|
|
# Oct 29 2000 - Ove K<>ven
|
|
|
|
|
# added --enable-opengl to default confargs
|
|
|
|
|
# added conf_question, conf_yesno_answer, and conf_string_answer functions
|
|
|
|
|
# added DEFCAT variable
|
2000-10-31 01:59:01 +01:00
|
|
|
|
# (later that day...)
|
|
|
|
|
# added conf_reset_question function
|
|
|
|
|
# added file existence checks to the registry copying
|
|
|
|
|
# fixed problem with no-windows directory creation
|
|
|
|
|
# some text reformatting from Eric Maryniak
|
1999-04-18 15:16:29 +02:00
|
|
|
|
|
2000-05-10 00:32:42 +02:00
|
|
|
|
#--- defaults (change these if you are a packager)
|
2000-10-29 19:02:53 +01:00
|
|
|
|
CONFARGS=--enable-opengl # configure args, e.g. --prefix=/usr --sysconfdir=/etc
|
2000-04-08 22:20:21 +02:00
|
|
|
|
prefix=/usr/local # installation prefix
|
2000-04-15 22:37:14 +02:00
|
|
|
|
sysconfdir=$prefix/etc # where wine.conf and global registry is supposed to be
|
2000-05-10 00:32:42 +02:00
|
|
|
|
bindir=$prefix/bin # where winelib apps will be (or is) installed
|
2000-04-15 22:37:14 +02:00
|
|
|
|
libdir=$prefix/lib # where libwine.so will be (or is) installed
|
|
|
|
|
exdir=documentation/samples # where the example system.ini resides
|
2000-04-08 22:20:21 +02:00
|
|
|
|
CONF=$sysconfdir/wine.conf # default path of the wine.conf
|
|
|
|
|
BINDIST=no # whether called from a binary package config script
|
|
|
|
|
DOCONF=auto # whether to autogenerate wine.conf
|
|
|
|
|
DOWCHK=auto # whether to autoconfigure existing-windows installation
|
|
|
|
|
DOWINE=auto # whether to autoconfigure no-windows installation
|
|
|
|
|
DOREG=auto # whether to install default registry
|
2000-04-15 22:37:14 +02:00
|
|
|
|
SYSREG=yes # whether to make root's registry global (system-default)
|
2000-05-10 00:32:42 +02:00
|
|
|
|
|
|
|
|
|
# "make install" still installs the dlls into $libdir, but this may change in the future
|
|
|
|
|
# (DLLPATH should point to them if/when they are not in standard ld.so paths)
|
|
|
|
|
DLLPATH=$libdir/wine # default path of the dll .so files (except libwine.so)
|
|
|
|
|
|
|
|
|
|
# having the Wine debugger launched automatically will be a plus for us
|
|
|
|
|
DEBUGGER=$bindir/winedbg # the (installed) path of winedbg
|
|
|
|
|
HDEBUGGER=debugger/winedbg # the (non-installed) path of winedbg
|
|
|
|
|
|
|
|
|
|
# this is only for existing-windows installs
|
2000-04-15 22:37:14 +02:00
|
|
|
|
WINECONF=tools/wineconf # the path of wineconf perl script
|
2000-05-10 00:32:42 +02:00
|
|
|
|
|
|
|
|
|
# this is only for no-windows installs
|
2000-04-08 22:20:21 +02:00
|
|
|
|
WINEINI=wine.ini # the path of default wine.ini (also used by wineconf)
|
|
|
|
|
WININI=/dev/null # the path of default win.ini
|
2000-04-15 22:37:14 +02:00
|
|
|
|
SYSTEMINI=$exdir/system.ini # the path of default system.ini
|
2000-04-08 22:20:21 +02:00
|
|
|
|
REGAPI=programs/regapi/regapi # the path of regapi winelib application
|
|
|
|
|
DEFREG=winedefault.reg # the path of the registry file to be fed to regapi
|
2000-04-15 22:37:14 +02:00
|
|
|
|
# CROOT=/var/wine # the path of the fake Drive C (asks user if not set)
|
2000-10-29 19:02:53 +01:00
|
|
|
|
DEFCAT=cat # program to cat $DEFREG with (some packages need zcat)
|
2000-05-10 00:32:42 +02:00
|
|
|
|
#--- end of defaults
|
|
|
|
|
|
|
|
|
|
# temporary files used by the installer
|
|
|
|
|
TMPCONF=/tmp/wineinstall.conf
|
|
|
|
|
TMPREG=/tmp/wineinstall.reg
|
1999-04-18 15:16:29 +02:00
|
|
|
|
|
2000-10-29 19:02:53 +01:00
|
|
|
|
# functions
|
|
|
|
|
|
|
|
|
|
function conf_question {
|
|
|
|
|
# parameters: $1 = importance, $2 = question-id, $3+ = message lines
|
|
|
|
|
# the first two parameters can be used by e.g. debconf in debian packages
|
|
|
|
|
# but here we just print the message
|
|
|
|
|
shift 2
|
|
|
|
|
echo
|
|
|
|
|
local LINE="$1"
|
|
|
|
|
while shift
|
|
|
|
|
do {
|
|
|
|
|
echo "$LINE"
|
|
|
|
|
LINE="$1"
|
|
|
|
|
}
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-31 01:59:01 +01:00
|
|
|
|
function conf_reset_question {
|
|
|
|
|
# parameters: $1 = question-id
|
|
|
|
|
# this is used to flush any cached answers and "already-displayed" flags
|
|
|
|
|
shift # dummy command
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-29 19:02:53 +01:00
|
|
|
|
function conf_yesno_answer {
|
|
|
|
|
unset ANSWER
|
|
|
|
|
while [ "$ANSWER" != 'yes' ] && [ "$ANSWER" != 'no' ]
|
|
|
|
|
do {
|
|
|
|
|
echo -n "$1"
|
|
|
|
|
read ANSWER
|
|
|
|
|
}
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function conf_string_answer {
|
|
|
|
|
echo -n "$1"
|
|
|
|
|
read ANSWER
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-18 15:16:29 +02:00
|
|
|
|
# startup...
|
|
|
|
|
|
2000-10-29 19:02:53 +01:00
|
|
|
|
echo "WINE Installer v0.5"
|
1999-04-18 15:16:29 +02:00
|
|
|
|
echo
|
2000-04-08 22:20:21 +02:00
|
|
|
|
|
|
|
|
|
if [ "$BINDIST" = 'no' ]
|
|
|
|
|
then {
|
|
|
|
|
|
1999-04-18 15:16:29 +02:00
|
|
|
|
if ! [ -f configure ]
|
|
|
|
|
then {
|
|
|
|
|
echo "You're running this from the wrong directory."
|
2000-11-25 02:23:32 +01:00
|
|
|
|
echo "Change to the Wine source's main directory and try again."
|
1999-04-18 15:16:29 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
2000-08-28 23:32:08 +02:00
|
|
|
|
# check whether RPM installed, and if it is, remove any old wine rpm.
|
2000-10-29 19:02:53 +01:00
|
|
|
|
hash rpm &>/dev/null
|
|
|
|
|
RET=$?
|
2000-08-28 23:32:08 +02:00
|
|
|
|
if [ $RET -eq 0 ]; then
|
|
|
|
|
if [ -n "`rpm -qi wine 2>/dev/null|grep "^Name"`" ]; then
|
2000-10-29 19:02:53 +01:00
|
|
|
|
echo "Warning: Old Wine RPM install detected. Do you want to remove it first?"
|
|
|
|
|
conf_yesno_answer "(yes/no) "
|
|
|
|
|
if [ "$ANSWER" = 'yes' ]; then
|
2000-08-28 23:32:08 +02:00
|
|
|
|
echo Starting wine rpm removal...
|
|
|
|
|
rpm -e wine; RET=$?
|
|
|
|
|
if [ $RET -eq 0 ]; then
|
|
|
|
|
echo Done.
|
|
|
|
|
else
|
2000-08-31 04:07:07 +02:00
|
|
|
|
echo "FAILED. Probably you aren't installing as root."
|
2000-11-25 02:23:32 +01:00
|
|
|
|
echo "Expect problems (library conflicts with existing install etc.)."
|
2000-08-28 23:32:08 +02:00
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "Sorry, I won't install Wine when an rpm version is still installed."
|
|
|
|
|
echo "(Wine support suffered from way too many conflicts)"
|
|
|
|
|
echo "Have a nice day !"
|
2000-10-31 01:59:01 +01:00
|
|
|
|
exit 1
|
2000-08-28 23:32:08 +02:00
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
1999-04-18 15:16:29 +02:00
|
|
|
|
# run the configure script, if necessary
|
|
|
|
|
|
2000-03-04 20:13:52 +01:00
|
|
|
|
if [ -f config.cache ] && [ -f Makefile ] && [ Makefile -nt configure ]
|
1999-04-18 15:16:29 +02:00
|
|
|
|
then {
|
|
|
|
|
echo "I see that WINE has already been configured, so I'll skip that."
|
2000-03-04 20:13:52 +01:00
|
|
|
|
# load configure results
|
|
|
|
|
. ./config.cache
|
1999-04-18 15:16:29 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "Running configure..."
|
|
|
|
|
echo
|
2000-04-08 22:20:21 +02:00
|
|
|
|
if ! ./configure $CONFARGS
|
1999-04-18 15:16:29 +02:00
|
|
|
|
then {
|
|
|
|
|
echo
|
|
|
|
|
echo "Configure failed, aborting install."
|
|
|
|
|
rm -f config.cache
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
fi
|
2000-03-04 20:13:52 +01:00
|
|
|
|
# load configure results
|
|
|
|
|
. ./config.cache
|
1999-04-18 15:16:29 +02:00
|
|
|
|
# make sure X was found
|
2000-03-04 20:13:52 +01:00
|
|
|
|
eval "$ac_cv_have_x"
|
|
|
|
|
if [ "$have_x" != "yes" ]
|
1999-04-18 15:16:29 +02:00
|
|
|
|
then {
|
|
|
|
|
echo "Install the X development headers and try again."
|
|
|
|
|
rm -f config.cache
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
2000-03-04 20:13:52 +01:00
|
|
|
|
elif [ "$ac_cv_header_X11_xpm_h" != "yes" ]
|
2000-02-25 21:51:09 +01:00
|
|
|
|
then {
|
|
|
|
|
echo "Install the Xpm development headers and try again."
|
|
|
|
|
rm -f config.cache
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
1999-04-18 15:16:29 +02:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# now do the compilation
|
|
|
|
|
|
|
|
|
|
if [ -f wine ] && [ wine -nt Makefile ]
|
|
|
|
|
then {
|
|
|
|
|
echo "Hmm, looks like WINE is already compiled. I'll skip that too, I guess."
|
|
|
|
|
}
|
|
|
|
|
else {
|
2000-10-31 01:59:01 +01:00
|
|
|
|
echo "Compiling WINE. Grab a lunch or two, rent a video, or whatever,"
|
|
|
|
|
echo "in the meantime..."
|
1999-04-18 15:16:29 +02:00
|
|
|
|
echo
|
|
|
|
|
if ! { make depend && make; }
|
|
|
|
|
then {
|
|
|
|
|
echo
|
|
|
|
|
echo "Compilation failed, aborting install."
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
echo
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# and installation, if root
|
|
|
|
|
|
|
|
|
|
if [ `whoami` != 'root' ]
|
|
|
|
|
then {
|
|
|
|
|
echo "You aren't root, so I'll skip the make install."
|
2000-04-08 22:20:21 +02:00
|
|
|
|
# setup to run from current directory
|
|
|
|
|
DLLPATH="$PWD/dlls"
|
|
|
|
|
if [ -z "$LD_LIBRARY_PATH" ]
|
|
|
|
|
then LD_LIBRARY_PATH="$PWD:$DLLPATH"
|
|
|
|
|
else LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD:$DLLPATH"
|
|
|
|
|
fi
|
|
|
|
|
export LD_LIBRARY_PATH
|
2000-07-23 15:32:04 +02:00
|
|
|
|
DEBUGGER="$PWD/$HDEBUGGER"
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo
|
|
|
|
|
echo "NOTE! To run Wine without installing, you must set the environment variable"
|
|
|
|
|
echo "LD_LIBRARY_PATH to $PWD:$DLLPATH"
|
|
|
|
|
echo "in your logon scripts."
|
1999-04-18 15:16:29 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "Now installing binaries onto the system..."
|
|
|
|
|
echo
|
|
|
|
|
if ! make install
|
|
|
|
|
then {
|
|
|
|
|
echo
|
|
|
|
|
echo "Installation failed, aborting."
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
fi
|
2000-04-08 22:20:21 +02:00
|
|
|
|
if [ -f /etc/ld.so.conf ] && ! grep -qs "$libdir" /etc/ld.so.conf
|
2000-02-25 21:51:09 +01:00
|
|
|
|
then {
|
|
|
|
|
echo
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo "$libdir didn't exist in your /etc/ld.so.conf, adding it now..."
|
|
|
|
|
echo "$libdir" >>/etc/ld.so.conf
|
2000-02-25 21:51:09 +01:00
|
|
|
|
echo "Re-running ldconfig..."
|
2000-03-04 20:13:52 +01:00
|
|
|
|
eval "$ac_cv_path_LDCONFIG"
|
2000-02-25 21:51:09 +01:00
|
|
|
|
}
|
|
|
|
|
fi
|
1999-04-18 15:16:29 +02:00
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
2000-04-08 22:20:21 +02:00
|
|
|
|
}
|
|
|
|
|
fi # BINDIST
|
|
|
|
|
|
1999-04-18 15:16:29 +02:00
|
|
|
|
# now check whether we should generate wine.conf
|
|
|
|
|
if [ -z "$DOCONF" ]
|
|
|
|
|
then DOCONF=auto
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$DOCONF" = 'auto' ]
|
|
|
|
|
then {
|
|
|
|
|
# see if we already have a system wine.conf
|
2000-04-08 22:20:21 +02:00
|
|
|
|
if [ -f $CONF ]
|
1999-04-18 15:16:29 +02:00
|
|
|
|
then DOCONF=no
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$DOCONF" != 'no' ]
|
|
|
|
|
then {
|
|
|
|
|
if [ `whoami` != 'root' ]
|
|
|
|
|
then {
|
|
|
|
|
CONF=~/.winerc
|
|
|
|
|
if ! [ -f $CONF ]
|
|
|
|
|
then {
|
|
|
|
|
if [ "$DOCONF" != 'yes' ]
|
|
|
|
|
then {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question medium make_user_winerc \
|
|
|
|
|
"Since you aren't root, and there's no system wine.conf, I assume" \
|
|
|
|
|
"you want a user-specific .winerc. Am I correct?"
|
|
|
|
|
conf_yesno_answer "(yes/no) "
|
|
|
|
|
DOCONF="$ANSWER"
|
1999-04-18 15:16:29 +02:00
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
if [ "$DOCONF" = 'no' ]
|
2000-04-08 22:20:21 +02:00
|
|
|
|
then {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question high need_root \
|
|
|
|
|
"Aborting install. Try again as root to generate a system wine.conf."
|
2000-04-08 22:20:21 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|
1999-04-18 15:16:29 +02:00
|
|
|
|
fi
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo
|
1999-04-18 15:16:29 +02:00
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
else {
|
1999-08-04 16:26:08 +02:00
|
|
|
|
mkdir -p $sysconfdir
|
1999-04-18 15:16:29 +02:00
|
|
|
|
DOCONF=yes
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
2000-04-08 22:20:21 +02:00
|
|
|
|
# generate wine.conf from existing windows install, if any
|
|
|
|
|
if [ "$DOCONF" = 'yes' ]
|
|
|
|
|
then {
|
|
|
|
|
if [ "$DOWCHK" = 'yes' ] || [ "$DOWCHK" = 'auto' ]
|
|
|
|
|
then {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
echo
|
|
|
|
|
echo -n "Searching for an existing Windows installation..."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
if ! $WINECONF -inifile "$WINEINI" > $CONF 2>/dev/null
|
2000-04-08 22:20:21 +02:00
|
|
|
|
then {
|
|
|
|
|
rm -f $CONF
|
2000-10-29 19:02:53 +01:00
|
|
|
|
echo " not found."
|
|
|
|
|
conf_question low do_without_windows \
|
2000-10-31 01:59:01 +01:00
|
|
|
|
"Windows was not found on your system, so I assume you want" \
|
|
|
|
|
"a Wine-only installation. Am I correct?"
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_yesno_answer "(yes/no) "
|
|
|
|
|
if [ "$ANSWER" = 'no' ]
|
2000-04-08 22:20:21 +02:00
|
|
|
|
then {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question high windows_not_found \
|
|
|
|
|
"Aborting install. Make sure your Windows partition is mounted and try again," \
|
|
|
|
|
"or create $CONF manually by copying from $WINEINI and adapting the drive paths."
|
2000-04-08 22:20:21 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
fi
|
2000-10-29 19:02:53 +01:00
|
|
|
|
DOWINE=yes
|
2000-04-08 22:20:21 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
echo " found."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
conf_reset_question windows_found
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question low windows_found \
|
|
|
|
|
"Created $CONF using your existing Windows installation." \
|
|
|
|
|
"You probably want to review the file, though."
|
2000-04-08 22:20:21 +02:00
|
|
|
|
DOWINE=no
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
elif [ "$DOWINE" = 'auto' ]
|
|
|
|
|
then DOWINE=yes
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
elif [ "$DOWINE" = 'auto' ]
|
|
|
|
|
then DOWINE=no
|
|
|
|
|
fi
|
|
|
|
|
|
2000-04-15 22:37:14 +02:00
|
|
|
|
# setup a no-windows installation, if necessary
|
2000-04-08 22:20:21 +02:00
|
|
|
|
if [ "$DOWINE" = 'yes' ]
|
|
|
|
|
then {
|
|
|
|
|
if [ `whoami` != 'root' ]
|
|
|
|
|
then DCROOT=~/c
|
|
|
|
|
else DCROOT=/c
|
|
|
|
|
fi
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question low drivec_path \
|
2000-10-31 01:59:01 +01:00
|
|
|
|
"Configuring Wine without Windows." \
|
|
|
|
|
"Some fake Windows directories must be created, to hold any .ini files, DLLs," \
|
|
|
|
|
"start menu entries, and other things your applications may need to install." \
|
|
|
|
|
"Where would oyu like your fake C drive to be placed?"
|
2000-04-08 22:20:21 +02:00
|
|
|
|
while [ -z "$CROOT" ]
|
|
|
|
|
do {
|
2000-10-31 01:59:01 +01:00
|
|
|
|
conf_string_answer "(default is $DCROOT) "
|
2000-10-29 19:02:53 +01:00
|
|
|
|
if [ -z "$ANSWER" ]
|
2000-04-08 22:20:21 +02:00
|
|
|
|
then CROOT="$DCROOT"
|
2000-10-31 01:59:01 +01:00
|
|
|
|
elif ! [ -d "$ANSWER" ]
|
2000-04-08 22:20:21 +02:00
|
|
|
|
then {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
if mkdir -p "$ANSWER"
|
|
|
|
|
then CROOT="$ANSWER"
|
2000-10-31 01:59:01 +01:00
|
|
|
|
else conf_reset_question drivec_path
|
2000-04-08 22:20:21 +02:00
|
|
|
|
fi
|
|
|
|
|
}
|
2000-10-31 01:59:01 +01:00
|
|
|
|
else CROOT="$ANSWER"
|
2000-04-08 22:20:21 +02:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
done
|
|
|
|
|
echo "Configuring Wine for a no-windows install in $CROOT..."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
for tdir in "$CROOT/windows" "$CROOT/windows/system" \
|
|
|
|
|
"$CROOT/windows/Start Menu" "$CROOT/windows/Start Menu/Programs" \
|
|
|
|
|
"$CROOT/Common Files" "$CROOT/Program Files" \
|
|
|
|
|
"$CROOT/windows/Profiles" "$CROOT/windows/Profiles/Administrator"
|
2000-04-08 22:20:21 +02:00
|
|
|
|
do [ -d "$tdir" ] || mkdir "$tdir"
|
|
|
|
|
done
|
|
|
|
|
[ -f "$CROOT/windows/win.ini" ] || cp "$WININI" "$CROOT/windows/win.ini"
|
|
|
|
|
[ -f "$CROOT/windows/system.ini" ] || cp "$SYSTEMINI" "$CROOT/windows/system.ini"
|
|
|
|
|
if [ "$DOCONF" = 'yes' ]
|
|
|
|
|
then {
|
2000-07-23 15:32:04 +02:00
|
|
|
|
sed "s|Path=/c\$|Path=${CROOT}|" $WINEINI > $CONF
|
2000-10-31 01:59:01 +01:00
|
|
|
|
conf_reset_question default_config
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question low default_config \
|
|
|
|
|
"Created $CONF using default Wine configuration." \
|
|
|
|
|
"You probably want to review the file, though."
|
2000-04-08 22:20:21 +02:00
|
|
|
|
}
|
|
|
|
|
fi
|
2000-07-23 15:32:04 +02:00
|
|
|
|
# now we really should install the registry
|
|
|
|
|
if [ "$DOREG" = 'auto' ]
|
|
|
|
|
then DOREG=yes
|
|
|
|
|
fi
|
2000-04-08 22:20:21 +02:00
|
|
|
|
}
|
|
|
|
|
elif [ -z "$CROOT" ]
|
|
|
|
|
then {
|
2000-10-29 19:02:53 +01:00
|
|
|
|
echo
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo "Reading current Wine configuration from $CONF..."
|
|
|
|
|
CROOT=`sed -n '/^\[Drive C\]$/,/^\[.*\]$/ s/^Path=\(.*\)/\1/p' $CONF`
|
|
|
|
|
echo "Drive C is configured at $CROOT."
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
echo
|
|
|
|
|
|
|
|
|
|
# fixup EXTRA_LD_LIBRARY_PATH
|
1999-04-18 15:16:29 +02:00
|
|
|
|
if [ "$DOCONF" = 'yes' ]
|
|
|
|
|
then {
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo "Setting EXTRA_LD_LIBRARY_PATH in .winerc to $DLLPATH..."
|
2000-07-23 15:32:04 +02:00
|
|
|
|
sed "s|EXTRA_LD_LIBRARY_PATH=.*|EXTRA_LD_LIBRARY_PATH=${DLLPATH}|" $CONF > $CONF.new
|
2000-04-08 22:20:21 +02:00
|
|
|
|
mv -f $CONF.new $CONF
|
1999-04-18 15:16:29 +02:00
|
|
|
|
echo
|
2000-04-08 22:20:21 +02:00
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# check whether we need to install default registry
|
|
|
|
|
# (not to be done if windows registry exists)
|
|
|
|
|
if [ "$DOREG" = 'auto' ]
|
|
|
|
|
then {
|
|
|
|
|
echo "Checking for real Windows registry..."
|
|
|
|
|
if [ -f "$CROOT/windows/system.dat" ]
|
|
|
|
|
then DOREG=no
|
|
|
|
|
elif [ -f "$CROOT/windows/system32/config/system" ]
|
|
|
|
|
then DOREG=no
|
|
|
|
|
else DOREG=yes
|
|
|
|
|
fi
|
|
|
|
|
if [ "$DOREG" = 'yes' ]
|
|
|
|
|
then echo "Not found, default Wine registry will be installed."
|
|
|
|
|
else echo "Windows registry found, will not install default Wine registry."
|
|
|
|
|
fi
|
1999-04-18 15:16:29 +02:00
|
|
|
|
echo
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# install default registry entries
|
|
|
|
|
if [ "$DOREG" = 'yes' ]
|
|
|
|
|
then {
|
2000-04-08 22:20:21 +02:00
|
|
|
|
if [ "$BINDIST" = 'no' ]
|
|
|
|
|
then {
|
|
|
|
|
echo "Compiling regapi..."
|
|
|
|
|
echo
|
|
|
|
|
(cd programs/regapi; make)
|
|
|
|
|
echo
|
|
|
|
|
}
|
|
|
|
|
fi
|
2000-05-10 00:32:42 +02:00
|
|
|
|
echo "Preparing to install default Wine registry entries..."
|
|
|
|
|
|
|
|
|
|
# create a temporary wineinstall.conf file using ttydrv,
|
|
|
|
|
# so that we don't have to run regapi under X
|
|
|
|
|
sed "s/GraphicsDriver=.*/GraphicsDriver=ttydrv/" $CONF > $TMPCONF
|
|
|
|
|
|
|
|
|
|
# create a temporary wineinstall.reg with fixed debugger path
|
2000-10-29 19:02:53 +01:00
|
|
|
|
$DEFCAT $DEFREG | sed "s|debugger/winedbg|${DEBUGGER}|" > $TMPREG
|
2000-05-10 00:32:42 +02:00
|
|
|
|
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo "Installing default Wine registry entries..."
|
1999-04-18 15:16:29 +02:00
|
|
|
|
echo
|
2000-05-10 00:32:42 +02:00
|
|
|
|
if ! $REGAPI --config $TMPCONF setValue < $TMPREG > /dev/null
|
1999-04-18 15:16:29 +02:00
|
|
|
|
then {
|
2000-05-10 00:32:42 +02:00
|
|
|
|
rm -f $TMPCONF $TMPREG
|
|
|
|
|
echo "Registry install failed."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
conf_reset_question regapi_error
|
2000-10-29 19:02:53 +01:00
|
|
|
|
conf_question high regapi_error
|
2000-02-25 21:51:09 +01:00
|
|
|
|
exit 1
|
1999-04-18 15:16:29 +02:00
|
|
|
|
}
|
2000-04-15 22:37:14 +02:00
|
|
|
|
else echo "Registry entries successfully installed."
|
|
|
|
|
fi
|
2000-05-10 00:32:42 +02:00
|
|
|
|
rm -f $TMPCONF $TMPREG
|
2000-04-15 22:37:14 +02:00
|
|
|
|
if [ "$SYSREG" = 'auto' ]
|
|
|
|
|
then SYSREG=yes
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# make root's registry global, if desired
|
|
|
|
|
if [ `whoami` = 'root' ] && [ "$SYSREG" = 'yes' ]
|
|
|
|
|
then {
|
2000-07-23 15:32:04 +02:00
|
|
|
|
[ -d ~/.wine ] || mkdir ~/.wine
|
2000-04-15 22:37:14 +02:00
|
|
|
|
if ! [ -f $sysconfdir/wine.userreg ]
|
|
|
|
|
then {
|
|
|
|
|
echo "Linking root's user registry hive to the global registry..."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
[ -f ~/.wine/wine.userreg ] && cp ~/.wine/wine.userreg $sysconfdir/wine.userreg
|
2000-04-15 22:37:14 +02:00
|
|
|
|
ln -sf $sysconfdir/wine.userreg ~/.wine/wine.userreg
|
|
|
|
|
}
|
|
|
|
|
fi
|
|
|
|
|
if ! [ -f $sysconfdir/wine.systemreg ]
|
|
|
|
|
then {
|
|
|
|
|
echo "Linking root's system registry hive to the global registry..."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
[ -f ~/.wine/system.reg ] && cp ~/.wine/system.reg $sysconfdir/wine.systemreg
|
2000-04-15 22:37:14 +02:00
|
|
|
|
ln -sf $sysconfdir/wine.systemreg ~/.wine/system.reg
|
|
|
|
|
}
|
1999-04-18 15:16:29 +02:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
fi
|
2000-04-15 22:37:14 +02:00
|
|
|
|
|
|
|
|
|
# it's a wrap
|
1999-04-18 15:16:29 +02:00
|
|
|
|
echo
|
|
|
|
|
echo "Installation complete for now. Good luck (this is still alpha software)."
|
2000-04-08 22:20:21 +02:00
|
|
|
|
echo "If you have problems with WINE, please read the documentation first,"
|
|
|
|
|
echo "as many kinds of potential problems are explained there."
|
2000-10-31 01:59:01 +01:00
|
|
|
|
|
|
|
|
|
exit 0
|