2 # WINE Installation script
3 # Can do almost everything from compiling to configuring...
5 # Mar 31 1999 - Ove Kåven
7 # Dec 9 1999 - Ove Kåven
9 # Feb 25 2000 - Ove Kåven
10 # auto-add /usr/local/lib to /etc/ld.so.conf
11 # Mar 2 2000 - Ove Kåven
12 # source rather than grep config.cache
13 # use sourced config.cache to start ldconfig
14 # reconfigure if config.cache doesn't exist
15 # Mar 30 2000 - Ove Kåven
16 # autoconfigure no-windows installs
17 # do not install registry on real-windows installs
18 # some support for binary package installs
19 # set and tell user about LD_LIBRARY_PATH if necessary
20 # set EXTRA_LD_LIBRARY_PATH in wine.conf
21 # Apr 9 2000 - Ove Kåven
22 # make root's registry global (system-default)
23 # May 9 2000 - Ove Kåven
24 # use ttydrv when running regapi, so we don't have to run from X
25 # change debugger path in registry
26 # Oct 29 2000 - Ove Kåven
27 # added --enable-opengl to default confargs
28 # added conf_question, conf_yesno_answer, and conf_string_answer functions
29 # added DEFCAT variable
31 # added conf_reset_question function
32 # added file existence checks to the registry copying
33 # fixed problem with no-windows directory creation
34 # some text reformatting from Eric Maryniak
35 # Jan 5 2000 - Chris Morgan
36 # use default config file in /documentation/samples/config
37 # replace .winerc with ~/.wine/config in printed text
38 # added user question to convert .winerc file(if exists) or use the default
40 # add conf_question to allow root to install a local config file and
42 # Jan 12 2000 - Chris Morgan
43 # distinguish between creating local and global config files
44 # display a message about the status of global config files
45 # misc cleanups and reordering of questions
46 # added check to see if wine is installed when we are running as a normal
47 # user and print a message if wine cannot be found
49 #--- defaults (change these if you are a packager)
50 CONFARGS=--enable-opengl # configure args, e.g. --prefix=/usr --sysconfdir=/etc
51 prefix=/usr/local # installation prefix
52 sysconfdir=$prefix/etc # where wine.conf and global registry is supposed to be
53 bindir=$prefix/bin # where winelib apps will be (or is) installed
54 libdir=$prefix/lib # where libwine.so will be (or is) installed
55 exdir=documentation/samples # where the example system.ini resides
56 GCONF=$sysconfdir/wine.conf # default path of the wine.conf global config file
57 LCONF=~/.wine/config # default path of the local config file
58 BINDIST=no # whether called from a binary package config script
59 DOGLOBALCONF=auto # whether to autogenerate wine.conf
60 DOLOCALCONF=auto # whether to autogenerate localconf
61 DOWCHK=auto # whether to autoconfigure existing-windows installation
62 DOWINE=auto # whether to autoconfigure no-windows installation
63 DOREG=auto # whether to install default registry
64 SYSREG=yes # whether to make root's registry global (system-default)
65 CONVCONF=no # whether we are converting an existing .winerc or not
67 # "make install" still installs the dlls into $libdir, but this may change in the future
68 # (DLLPATH should point to them if/when they are not in standard ld.so paths)
69 DLLPATH=$libdir/wine # default path of the dll .so files (except libwine.so)
71 # having the Wine debugger launched automatically will be a plus for us
72 DEBUGGER=$bindir/winedbg # the (installed) path of winedbg
73 HDEBUGGER=debugger/winedbg # the (non-installed) path of winedbg
75 # this is only for existing-windows installs
76 WINECONF=tools/wineconf # the path of wineconf perl script
78 # this is only for no-windows installs
79 WINEINI=$exdir/config # the path of default wine config file (also used by wineconf)
80 WININI=/dev/null # the path of default win.ini
81 SYSTEMINI=$exdir/system.ini # the path of default system.ini
82 REGAPI=programs/regapi/regapi # the path of regapi winelib application
83 DEFREG=winedefault.reg # the path of the registry file to be fed to regapi
84 # CROOT=/var/wine # the path of the fake Drive C (asks user if not set)
85 DEFCAT=cat # program to cat $DEFREG with (some packages need zcat)
88 # temporary files used by the installer
89 TMPCONF=/tmp/wineinstall.conf
90 TMPREG=/tmp/wineinstall.reg
98 function conf_question {
99 # parameters: $1 = importance, $2 = question-id, $3+ = message lines
100 # the first two parameters can be used by e.g. debconf in debian packages
101 # but here we just print the message
113 function conf_reset_question {
114 # parameters: $1 = question-id
115 # this is used to flush any cached answers and "already-displayed" flags
116 shift # dummy command
119 function conf_yesno_answer {
121 while [ "$ANSWER" != 'yes' ] && [ "$ANSWER" != 'no' ]
129 function conf_string_answer {
134 function create_windows_directories {
135 for tdir in "$CROOT/windows" "$CROOT/windows/system" \
136 "$CROOT/windows/Start Menu" "$CROOT/windows/Start Menu/Programs" \
137 "$CROOT/Common Files" "$CROOT/Program Files" \
138 "$CROOT/windows/Profiles" "$CROOT/windows/Profiles/Administrator"
139 do [ -d "$tdir" ] || mkdir "$tdir"
141 [ -f "$CROOT/windows/win.ini" ] || cp "$WININI" "$CROOT/windows/win.ini"
142 [ -f "$CROOT/windows/system.ini" ] || cp "$SYSTEMINI" "$CROOT/windows/system.ini"
147 echo "WINE Installer v0.7"
150 if [ "$BINDIST" = 'no' ]
153 if ! [ -f configure ]
155 echo "You're running this from the wrong directory."
156 echo "Change to the Wine source's main directory and try again."
161 # check whether RPM installed, and if it is, remove any old wine rpm.
164 if [ $RET -eq 0 ]; then
165 if [ -n "`rpm -qi wine 2>/dev/null|grep "^Name"`" ]; then
166 echo "Warning: Old Wine RPM install detected. Do you want to remove it first?"
167 conf_yesno_answer "(yes/no) "
168 if [ "$ANSWER" = 'yes' ]; then
169 echo Starting wine rpm removal...
171 if [ $RET -eq 0 ]; then
174 echo "FAILED. Probably you aren't installing as root."
175 echo "Expect problems (library conflicts with existing install etc.)."
178 echo "Sorry, I won't install Wine when an rpm version is still installed."
179 echo "(Wine support suffered from way too many conflicts)"
180 echo "Have a nice day !"
186 # run the configure script, if necessary
188 if [ -f config.cache ] && [ -f Makefile ] && [ Makefile -nt configure ]
190 echo "I see that WINE has already been configured, so I'll skip that."
192 # load configure results
196 echo "Running configure..."
198 if ! ./configure $CONFARGS
201 echo "Configure failed, aborting install."
206 # load configure results
208 # make sure X was found
210 if [ "$have_x" != "yes" ]
212 echo "Install the X development headers and try again."
216 elif [ "$ac_cv_header_X11_xpm_h" != "yes" ]
218 echo "Install the Xpm development headers and try again."
226 # now do the compilation
228 if [ -f wine ] && [ wine -nt Makefile ]
230 echo "Hmm, looks like WINE is already compiled. I'll skip that too, I guess."
234 echo "Compiling WINE. Grab a lunch or two, rent a video, or whatever,"
235 echo "in the meantime..."
238 if ! { make depend && make; }
241 echo "Compilation failed, aborting install."
249 # and installation, if root
251 if [ `whoami` != 'root' ]
253 echo "You aren't root, so I'll skip the make install."
255 # setup to run from current directory
257 if [ -z "$LD_LIBRARY_PATH" ]
258 then LD_LIBRARY_PATH="$PWD:$DLLPATH"
259 else LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD:$DLLPATH"
261 export LD_LIBRARY_PATH
262 DEBUGGER="$PWD/$HDEBUGGER"
264 echo "NOTE! To run Wine without installing, you must set the environment variable"
265 echo "LD_LIBRARY_PATH to $PWD:$DLLPATH"
266 echo "in your logon scripts."
269 # see if wine is installed on the users system, if not prompt them
271 if [ ! `which wine` ]
273 echo "Could not find wine on your system. Run wineinstall as root to install wine"
274 echo "before re-running wineinstall as a user."
276 echo "Exiting wineinstall"
281 echo "Now installing binaries onto the system..."
287 echo "Installation failed, aborting."
291 if [ -f /etc/ld.so.conf ] && ! grep -qs "$libdir" /etc/ld.so.conf
294 echo "$libdir didn't exist in your /etc/ld.so.conf, adding it now..."
295 echo "$libdir" >>/etc/ld.so.conf
296 echo "Re-running ldconfig..."
297 eval "$ac_cv_path_LDCONFIG"
306 # now check whether we should generate wine.conf
307 if [ -z "$DOGLOBALCONF" ]
308 then DOGLOBALCONF=auto
311 if [ "$DOGLOBALCONF" = 'auto' ]
313 # see if we already have a system wine.conf
314 if [ ! -f $GCONF ] && [ `whoami` = 'root' ]
317 echo "Creation of a global config file is not supported in wineinstall at this"
318 echo "time. When the configuration architecture is cleaned up this functionality"
319 echo "will be restored to wineinstall."
325 if [ "$DOLOCALCONF" = 'auto' ]
327 # see if the user is root, if so, explicitly ask them if they want a
329 if [ `whoami` = 'root' ]
331 echo "You are running as root. Do you want a local config file,"
332 echo "file, ~/.wine/config, created?"
333 conf_yesno_answer "(yes/no) "
334 DOLOCALCONF="$ANSWER"
336 echo "Create local config file ~/.wine/config?"
337 conf_yesno_answer "(yes/no) "
339 DOLOCALCONF="$ANSWER"
340 if [ "$ANSWER" = 'no' ]
342 conf_question high need_root \
343 "Aborting install. Try again as root to generate a system wine.conf."
350 echo "Found existing $LCONF, if you continue this file will be"
351 echo "overwritten. Continue running wineinstall?"
352 conf_yesno_answer "(yes/no) "
354 if [ "$ANSWER" = 'no' ]
356 echo "Exiting wineinstall"
363 # generate $TMPCONF from existing windows install, if any
364 if [ "$DOLOCALCONF" = 'yes' ]
366 if [ "$DOWCHK" = 'yes' ] || [ "$DOWCHK" = 'auto' ]
368 echo -n "Searching for an existing Windows installation..."
369 if ! $WINECONF -inifile "$WINEINI" > $TMPCONF 2>/dev/null
371 rm -f $TMPCONF $TMPREG > /dev/null
374 conf_question low do_without_windows \
375 "Windows was not found on your system, so I assume you want" \
376 "a Wine-only installation. Am I correct?"
377 conf_yesno_answer "(yes/no) "
378 if [ "$ANSWER" = 'no' ]
380 conf_question high windows_not_found \
381 "Aborting install. Make sure your Windows partition is mounted and try again," \
382 "or create $LCONF manually by copying from $WINEINI and adapting the drive paths."
391 conf_reset_question windows_found
392 conf_question low windows_found \
393 "Created $LCONF using your existing Windows installation." \
394 "You probably want to review the file, though."
399 elif [ "$DOWINE" = 'auto' ]
403 elif [ "$DOWINE" = 'auto' ]
408 # setup a no-windows installation, if necessary
409 if [ "$DOWINE" = 'yes' ]
411 # set an appropriate DCROOT
412 if [ `whoami` != 'root' ]
419 conf_question medium convert_config \
420 "I found the old version Wine config file, .winerc, in your " \
421 "home directory. I can convert this to the new format or use the" \
422 "new default Wine config file. Convert?"
423 conf_yesno_answer "(yes/no) "
424 if [ "$ANSWER" = 'yes' ]
433 conf_question low drivec_path \
434 "Configuring Wine without Windows." \
435 "Some fake Windows directories must be created, to hold any .ini files, DLLs," \
436 "start menu entries, and other things your applications may need to install." \
437 "Where would you like your fake C drive to be placed?"
438 while [ -z "$CROOT" ]
440 conf_string_answer "(default is $DCROOT) "
441 [ -z "$ANSWER" ] && ANSWER="$DCROOT"
442 if ! [ -d "$ANSWER" ]
444 if mkdir -p "$ANSWER"
447 echo "Directory $ANSWER can't be created !"
448 conf_reset_question drivec_path
455 echo "Configuring Wine for a no-windows install in $CROOT..."
457 create_windows_directories
461 # create $LCONF using the default config file $WINEINI
462 if [ "$DOLOCALCONF" = 'yes' ] && [ "$CONVCONF" = 'no' ]
464 sed "s|\"Path\" = \"/c\"\$|\"Path\" = \"${CROOT}\"|" $WINEINI > $TMPCONF
465 conf_reset_question default_config
466 conf_question low default_config \
467 "Created $LCONF using default Wine configuration." \
468 "You probably want to review the file, though."
472 # now we really should install the registry
473 if [ "$DOREG" = 'auto' ]
480 #install the local config file $LCONF
481 if [ "$DOLOCALCONF" = 'yes' ]
488 if [ "$CONVCONF" = 'no' ]
490 cp $TMPCONF $LCONF > /dev/null
496 #install the global config file $GCONF
497 if [ "$DOGLOBALCONF" = 'yes' ]
499 if [ ! -f $sysconfdir ]
504 cp $TMPCONF $GCONF > /dev/null
507 # check whether we need to install default registry
508 # (not to be done if windows registry exists)
509 if [ "$DOREG" = 'auto' ]
511 echo "Checking for real Windows registry..."
512 if [ -f "$CROOT/windows/system.dat" ]
514 elif [ -f "$CROOT/windows/system32/config/system" ]
518 if [ "$DOREG" = 'yes' ]
519 then echo "Not found, default Wine registry will be installed."
520 else echo "Windows registry found, will not install default Wine registry."
526 # install default registry entries
527 if [ "$DOREG" = 'yes' ]
529 if [ "$BINDIST" = 'no' ]
531 echo "Compiling regapi..."
532 (cd programs/regapi; make)
536 echo "Preparing to install default Wine registry entries..."
538 # edit config files so we don't have to run regapi under X
539 if [ "$CONVCONF" = 'yes' ]
541 mv $WINEINI $WINEINI.new
542 sed "s/GraphicsDriver=.*/GraphicsDriver=ttydrv/" $WINEINI.new > $WINEINI
545 sed "s/\"GraphicsDriver\" = .*/\"GraphicsDriver\" = \"ttydrv\"/" $LCONF.new > $LCONF
548 # create a temporary wineinstall.reg with fixed debugger path
549 $DEFCAT $DEFREG | sed "s|debugger/winedbg|${DEBUGGER}|" > $TMPREG
551 echo "Installing default Wine registry entries..."
553 if ! $REGAPI setValue < $TMPREG > /dev/null
556 echo "Registry install failed."
557 conf_reset_question regapi_error
558 conf_question high regapi_error
562 # if we are converting from a .winerc file, running regapi once
563 # will ONLY convert .winerc -> ~/.wine/config, it will not import the
564 # registry data. so if we are converting we need to run regapi twice
565 if [ "$CONVCONF" = 'yes' ]
567 if ! $REGAPI setValue < $TMPREG > /dev/null
570 echo "Registry install failed."
571 conf_reset_question regapi_error
572 conf_question high regapi_error
576 echo "Registry entries successfully installed."
580 echo "Registry entries successfully installed."
585 if [ "$SYSREG" = 'auto' ]
589 # if we converted we need to change the graphics driver back and
590 # restore the original .winerc file
591 if [ "$CONVCONF" = 'yes' ]
593 mv $WINEINI.new $WINEINI
596 sed "s/\"GraphicsDriver\" = .*/\"GraphicsDriver\" = \"x11drv\"/" $LCONF > $LCONF.new
601 # make root's registry global, if desired
602 if [ `whoami` = 'root' ] && [ "$DOREG" = 'yes' ] && [ "$SYSREG" = 'yes' ]
604 [ -d ~/.wine ] || mkdir ~/.wine
605 if ! [ -f $sysconfdir/wine.userreg ]
607 echo "Linking root's user registry hive to the global registry..."
608 [ -f ~/.wine/wine.userreg ] && cp ~/.wine/wine.userreg $sysconfdir/wine.userreg
609 ln -sf $sysconfdir/wine.userreg ~/.wine/wine.userreg
612 if ! [ -f $sysconfdir/wine.systemreg ]
614 echo "Linking root's system registry hive to the global registry..."
615 [ -f ~/.wine/system.reg ] && cp ~/.wine/system.reg $sysconfdir/wine.systemreg
616 ln -sf $sysconfdir/wine.systemreg ~/.wine/system.reg
622 # cleanup any temporary files that may remain
633 echo "Installation complete for now. Good luck (this is still alpha software)."
634 echo "If you have problems with WINE, please read the documentation first,"
635 echo "as many kinds of potential problems are explained there."