Changed bug report address.
[wine] / tools / wineinstall
1 #!/bin/bash
2 # WINE Installation script
3 # Can do almost everything from compiling to configuring...
4 #
5 # Copyright 1999 Ove Kåven
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 #
21 # History:
22 # Mar 31 1999 - Ove Kåven
23 #  First version
24 # Dec 9 1999 - Ove Kåven
25 #  require Xpm
26 # Feb 25 2000 - Ove Kåven
27 #  auto-add /usr/local/lib to /etc/ld.so.conf
28 # Mar 2 2000 - Ove Kåven
29 #  source rather than grep config.cache
30 #  use sourced config.cache to start ldconfig
31 #  reconfigure if config.cache doesn't exist
32 # Mar 30 2000 - Ove Kåven
33 #  autoconfigure no-windows installs
34 #  do not install registry on real-windows installs
35 #  some support for binary package installs
36 #  set and tell user about LD_LIBRARY_PATH if necessary
37 #  set EXTRA_LD_LIBRARY_PATH in wine.conf
38 # Apr 9 2000 - Ove Kåven
39 #  make root's registry global (system-default)
40 # May 9 2000 - Ove Kåven
41 #  use ttydrv when running regapi, so we don't have to run from X
42 #  change debugger path in registry
43 # Oct 29 2000 - Ove Kåven
44 #  added --enable-opengl to default confargs
45 #  added conf_question, conf_yesno_answer, and conf_string_answer functions
46 #  added DEFCAT variable
47 # (later that day...)
48 #  added conf_reset_question function
49 #  added file existence checks to the registry copying
50 #  fixed problem with no-windows directory creation
51 #  some text reformatting from Eric Maryniak
52 # Jan 5 2000 - Chris Morgan
53 #  use default config file in /documentation/samples/config
54 #  replace .winerc with ~/.wine/config in printed text
55 #  added user question to convert .winerc file(if exists) or use the default
56 #    config file
57 #  add conf_question to allow root to install a local config file and
58 #    registry
59 # Jan 12 2000 - Chris Morgan
60 #  distinguish between creating local and global config files
61 #  display a message about the status of global config files
62 #  misc cleanups and reordering of questions
63 #  added check to see if wine is installed when we are running as a normal
64 #    user and print a message if wine cannot be found
65 # Feb 16 2002 - Adam D. Moss
66 #  Use config.status instead of config.cache to check whether we're
67 #    configured/compiled and to recreate the configuration
68 # Feb 20 2002 - Adam D. Moss
69 #  Partially revert previous changes, force configure to write an
70 #    old-style config.cache
71 # Mar 27 2002 - Chris Morgan
72 #  prevent the user from running wineinstall as root
73 #  add script commands so we su root for 'make install' and other commands
74 #    that require root access
75 #  add text to tell the user we need to run stuff as root so they don't 
76 #    think we are trying to pull something funny
77 # Apr 14 2002 - Dustin Navea
78 #  Fix sed command when finding real-windows registry so it actually 
79 #   accesses a file (~/.wine/config) instead of null ($CONF?!)
80 #  Added search for clean-install (not upgrade) Win2k registry
81 #  (next day, after some sleep)
82 #  Fix sed string when finding real-windows registry to actually find 
83 #   windows partition name in [Drive C] section
84 #  it should now almost always find the windows partition and real-windows 
85 #  registry (if not, let me know)
86
87 #--- defaults (change these if you are a packager)
88 CONFARGS="--enable-opengl"    # configure args, e.g. --prefix=/usr --sysconfdir=/etc
89 prefix=/usr/local             # installation prefix
90 sysconfdir=$prefix/etc        # where wine.conf and global registry is supposed to be
91 bindir=$prefix/bin            # where winelib apps will be (or is) installed
92 libdir=$prefix/lib            # where libwine.so will be (or is) installed
93 exdir=documentation/samples   # where the example system.ini resides
94 GCONF=$sysconfdir/wine.conf   # default path of the wine.conf global config file
95 LCONF=~/.wine/config          # default path of the local config file
96 BINDIST=no                    # whether called from a binary package config script
97 DOGLOBALCONF=auto             # whether to autogenerate wine.conf
98 DOLOCALCONF=auto              # whether to autogenerate localconf
99 DOWCHK=auto                   # whether to autoconfigure existing-windows installation
100 DOWINE=auto                   # whether to autoconfigure no-windows installation
101 DOREG=auto                    # whether to install default registry
102 SYSREG=yes                    # whether to make root's registry global (system-default)
103 CONVCONF=no                   # whether we are converting an existing .winerc or not
104
105 # "make install" still installs the dlls into $libdir, but this may change in the future
106 # (DLLPATH should point to them if/when they are not in standard ld.so paths)
107 DLLPATH=$libdir/wine          # default path of the dll .so files (except libwine.so)
108
109 # having the Wine debugger launched automatically will be a plus for us
110 DEBUGGER=$bindir/winedbg      # the (installed) path of winedbg
111 HDEBUGGER=debugger/winedbg    # the (non-installed) path of winedbg
112
113 # this is only for existing-windows installs
114 WINECONF=tools/wineconf       # the path of wineconf perl script
115
116 # this is only for no-windows installs
117 WINEINI=$exdir/config         # the path of default wine config file (also used by wineconf)
118 WININI=/dev/null              # the path of default win.ini
119 SYSTEMINI=$exdir/system.ini   # the path of default system.ini
120 REGAPI=programs/regapi/regapi # the path of regapi winelib application
121 DEFREG=winedefault.reg        # the path of the registry file to be fed to regapi
122 # CROOT=/var/wine             # the path of the fake Drive C (asks user if not set)
123 DEFCAT=cat                    # program to cat $DEFREG with (some packages need zcat)
124 #--- end of defaults
125
126 # temporary files used by the installer
127 TMPCONF=/tmp/wineinstall.conf
128 TMPREG=/tmp/wineinstall.reg
129
130 # functions
131
132 function std_sleep {
133   sleep 1
134 }
135
136 function conf_question {
137   # parameters: $1 = importance, $2 = question-id, $3+ = message lines
138   # the first two parameters can be used by e.g. debconf in debian packages
139   # but here we just print the message
140   shift 2
141   echo
142   local LINE="$1"
143   while shift
144   do {
145     echo "$LINE"
146     LINE="$1"
147   }
148   done
149 }
150
151 function conf_reset_question {
152   # parameters: $1 = question-id
153   # this is used to flush any cached answers and "already-displayed" flags
154   shift # dummy command
155 }
156
157 function conf_yesno_answer {
158   unset ANSWER
159   while [ "$ANSWER" != 'yes' ] && [ "$ANSWER" != 'no' ]
160   do {
161     echo -n "$1"
162     read ANSWER
163   }
164   done
165 }
166
167 function conf_string_answer {
168   echo -n "$1"
169   read ANSWER
170 }
171
172 function create_windows_directories {
173   for tdir in "$CROOT/windows" "$CROOT/windows/system" \
174               "$CROOT/windows/Start Menu" "$CROOT/windows/Start Menu/Programs" \
175               "$CROOT/Common Files" "$CROOT/Program Files" \
176               "$CROOT/windows/Profiles" "$CROOT/windows/Profiles/Administrator"
177   do [ -d "$tdir" ] || mkdir "$tdir"
178   done
179   [ -f "$CROOT/windows/win.ini" ]    || cp "$WININI"    "$CROOT/windows/win.ini"
180   [ -f "$CROOT/windows/system.ini" ] || cp "$SYSTEMINI" "$CROOT/windows/system.ini"
181 }
182
183 # startup...
184
185 echo "WINE Installer v0.72"
186 echo
187
188 if [ "$BINDIST" = 'no' ]
189 then {
190
191 if ! [ -f configure ]
192 then {
193   echo "You're running this from the wrong directory."
194   echo "Change to the Wine source's main directory and try again."
195   exit 1
196 }
197 fi
198
199 if [ `whoami` == 'root' ]
200 then {
201   echo "You are running wineinstall as root, this is not advisable. Please rerun as a user."
202   echo "Aborting."
203   exit 1
204 }
205 fi
206
207 # check whether RPM installed, and if it is, remove any old wine rpm.
208 hash rpm &>/dev/null
209 RET=$?
210 if [ $RET -eq 0 ]; then
211   if [ -n "`rpm -qi wine 2>/dev/null|grep "^Name"`" ]; then
212     echo "Warning: Old Wine RPM install detected. Do you want to remove it first?"
213     conf_yesno_answer "(yes/no) "
214     if [ "$ANSWER" = 'yes' ]; then
215       echo "We need to remove the rpm as root, please enter your root password"
216       echo
217       echo Starting wine rpm removal...
218       su -c "rpm -e wine; RET=$?"
219       if [ $RET -eq 0 ]; then
220         echo Done.
221       else
222         echo "FAILED. Probably you aren't installing as root."
223         echo "Expect problems (library conflicts with existing install etc.)."
224       fi
225     else
226       echo "Sorry, I won't install Wine when an rpm version is still installed."
227       echo "(Wine support suffered from way too many conflicts between RPM"
228       echo "and source installs)"
229       echo "Have a nice day !"
230       exit 1
231     fi 
232   fi
233 fi
234
235 # check whether wine binary still available
236 if [ -n "`which wine 2>/dev/null|grep '/wine'`" ]; then
237   echo "Warning !! wine binary (still) found, which may indicate"
238   echo "a (conflicting) previous installation."
239   echo "You might want to abort and uninstall Wine first."
240   std_sleep
241 fi
242
243 # run the configure script, if necessary
244
245 if [ -f config.cache ] && [ -f Makefile ] && [ Makefile -nt configure ]
246 then {
247   echo
248   echo "I see that WINE has already been configured, so I'll skip that."
249   std_sleep
250   # load configure results
251   . ./config.cache
252 }
253 else {
254   echo "Running configure..."
255   echo
256   if ! ./configure -C $CONFARGS
257   then {
258     echo
259     echo "Configure failed, aborting install."
260     rm -f config.cache
261     exit 1
262   }
263   fi
264   # load configure results
265   . ./config.cache
266   # make sure X was found
267   eval "$ac_cv_have_x"
268   if [ "$have_x" != "yes" ]
269   then {
270     echo "Install the X development headers and try again."
271     rm -f config.cache
272     exit 1
273   }
274   fi
275 }
276 fi
277
278 # now do the compilation and install, we need to always do this because we 
279 # don't want the 'make install' command we might run to run 'make' as root
280 if [ `whoami` != 'root' ]
281 then {
282   # ask the user if they want to build and install wine
283   echo
284   echo "We need to install wine as root user, do you want us to build wine,"
285   echo "'su root' and install Wine?  Enter 'no' to continue without installing"
286   conf_yesno_answer "(yes/no) "
287
288   if [ "$ANSWER" = "yes" ]
289   then {
290     # start out with the basic command
291     sucommand="make install"
292
293     # if the user doesn't have $libdir in their ld.so.conf add this
294     # to our sucommand string
295     if [ -f /etc/ld.so.conf ]
296     then
297       if [ ! grep -qs "$libdir" /etc/ld.so.conf ]
298       then {
299         echo
300         echo "$libdir doesn't exist in your /etc/ld.so.conf, it will be added"
301         echo "when we perform the install..."
302         sucommand="$sucommand;echo $libdir>>/etc/ld.so.conf"
303       }
304       fi
305       # run ldconfig always just in case some updated files dont get linked
306       sucommand="$sucommand;$ac_cv_path_LDCONFIG"
307     fi
308
309     echo
310
311     echo "Compiling WINE. Grab a lunch or two, rent a video, or whatever,"
312     echo "in the meantime..."
313     echo
314     std_sleep
315
316     # try to just make wine, if this fails 'make depend' and try to remake
317     if ! { make; }
318     then {
319       if ! { make depend && make; }
320       then {
321         echo
322         echo "Compilation failed, aborting install."
323         exit 1
324       }
325       fi
326     }
327     fi
328     echo
329
330     echo "Performing 'make install' as root to install binaries, enter root password"
331
332     std_sleep
333
334     if ! su root -c "$sucommand"
335     then {
336       echo
337       echo "Either you entered an incorrect password or we failed to run"
338       echo "'$sucommand' correctly."
339       echo "If you didn't enter an incorrect password then please report this"
340       echo "error and any steps to possibly reproduce it to"
341       echo "http://bugs.winehq.com/"
342       echo
343       echo "Installation failed, aborting."
344       exit 1
345     }
346     fi
347
348     echo
349
350     # see if wine is installed on the users system, if not prompt them
351     # and then exit
352     if [ ! `which wine` ]
353     then
354       echo "Could not find wine on your system.  Run wineinstall as root to install wine"
355       echo "before re-running wineinstall as a user."
356       echo
357       echo "Exiting wineinstall"
358       exit 1;
359     fi
360   }
361   else {
362     # user didn't want to install wine so tell them about running from the
363     # current directory and set some stuff up for them
364
365     # setup to run from current directory
366     DLLPATH="$PWD/dlls"
367     if [ -z "$LD_LIBRARY_PATH" ]
368     then LD_LIBRARY_PATH="$PWD:$DLLPATH"
369     else LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD:$DLLPATH"
370     fi
371     export LD_LIBRARY_PATH
372     DEBUGGER="$PWD/$HDEBUGGER"
373     echo
374     echo "NOTE! To run Wine without installing, you must set the environment variable"
375     echo "LD_LIBRARY_PATH to $PWD:$DLLPATH"
376     echo "in your logon scripts."
377     echo
378   }
379   fi
380 }
381 else {
382   echo "You are running wineinstall as root, this is not advisable. Please rerun as a user."
383   echo "Aborting."
384   exit 1
385 }
386 fi # [ `whoami` != 'root' ]
387
388 }
389 fi # BINDIST
390
391 # now check whether we should generate wine.conf
392 if [ -z "$DOGLOBALCONF" ]
393 then
394   DOGLOBALCONF=auto
395 fi
396
397 if [ "$DOGLOBALCONF" = 'auto' ]
398 then {
399   # see if we already have a system wine.conf
400   if [ ! -f $GCONF ] && [ `whoami` = 'root' ]
401   then
402     DOGLOBALCONF=no
403     echo "Creation of a global config file is not supported in wineinstall at this"
404     echo "time.  When the configuration architecture is cleaned up this functionality"
405     echo "will be restored to wineinstall."
406     echo
407   fi
408 }
409 fi
410
411 if [ "$DOLOCALCONF" = 'auto' ]
412 then {
413   # see if the user is root, if so, explicitly ask them if they want a
414   # local config file
415   if [ `whoami` = 'root' ]
416   then
417     echo "You are running as root.  Do you want a local config file,"
418     echo "file, ~/.wine/config, created?"
419     conf_yesno_answer "(yes/no) "
420     DOLOCALCONF="$ANSWER"
421   else
422     # if the user has an existing config file ask them if they want us to
423     # overwrite it, otherwise just ask them if they want to create one
424     if [ -f "$LCONF" ]
425     then
426       echo "Found existing $LCONF, do you want to overwrite this"
427       echo "existing Wine configuration file?"
428       conf_yesno_answer "(yes/no) "
429       DOLOCALCONF="$ANSWER"
430       echo
431     else {
432       echo "Create local config file ~/.wine/config?"
433       conf_yesno_answer "(yes/no) "
434       DOLOCALCONF="$ANSWER"
435       echo
436       if [ "$ANSWER" = 'no' ]
437       then
438         conf_question high need_root \
439           "Aborting install. Try again as root to generate a system wine.conf."
440         exit 1
441       fi
442     }
443     fi
444   fi
445 }
446 fi
447
448 # generate $TMPCONF from existing windows install, if any
449 if [ "$DOLOCALCONF" = 'yes' ]
450 then {
451   if [ "$DOWCHK" = 'yes' ] || [ "$DOWCHK" = 'auto' ]
452   then {
453     echo -n "Searching for an existing Windows installation..."
454     if ! $WINECONF -inifile "$WINEINI" > $TMPCONF 2>/dev/null
455     then {
456       rm -f $TMPCONF $TMPREG > /dev/null
457
458       echo " not found. (no matching /etc/fstab mount entry found)"
459       conf_question low do_without_windows \
460        "Windows was not found on your system, so I assume you want" \
461        "a Wine-only installation. Am I correct?"
462       conf_yesno_answer "(yes/no) "
463       if [ "$ANSWER" = 'no' ]
464       then {
465         conf_question high windows_not_found \
466          "Aborting install. Make sure your Windows partition is mounted and try again," \
467          "or create $LCONF manually by copying from $WINEINI and adapting the drive paths."
468         exit 1
469       }
470       fi
471       DOWINE=yes
472     }
473     else {
474       echo " found."
475
476       conf_reset_question windows_found
477       conf_question low windows_found \
478        "Created $LCONF using your existing Windows installation." \
479        "You probably want to review the file, though."
480       DOWINE=no
481     }
482     fi
483   }
484   elif [ "$DOWINE" = 'auto' ]
485   then DOWINE=yes
486   fi
487 }
488 elif [ "$DOWINE" = 'auto' ]
489 then 
490   DOWINE=no
491 fi
492
493 # setup a no-windows installation, if necessary
494 if [ "$DOWINE" = 'yes' ]
495 then {
496   # set an appropriate DCROOT
497   if [ `whoami` != 'root' ]
498   then DCROOT=~/c
499   else DCROOT=/c
500   fi
501
502   if [ -f ~/.winerc ]
503   then {
504     conf_question medium convert_config \
505      "I found the old version Wine config file, .winerc, in your " \
506      "home directory.  I can convert this to the new format or use the" \
507      "new default Wine config file. Convert?"
508     conf_yesno_answer "(yes/no) "
509     if [ "$ANSWER" = 'yes' ]
510     then {
511       WINEINI=~/.winerc
512       CONVCONF=yes
513     }
514     fi
515   }
516   else {
517
518     conf_question low drivec_path \
519      "Configuring Wine without Windows." \
520      "Some fake Windows directories must be created, to hold any .ini files, DLLs," \
521      "start menu entries, and other things your applications may need to install." \
522      "Where would you like your fake C drive to be placed?"
523     while [ -z "$CROOT" ]
524     do {
525       conf_string_answer "(default is $DCROOT) "
526       [ -z "$ANSWER" ] && ANSWER="$DCROOT"
527       if ! [ -d "$ANSWER" ]
528       then {
529         if mkdir -p "$ANSWER"
530         then CROOT="$ANSWER"
531         else
532           echo "Directory $ANSWER can't be created !"
533           conf_reset_question drivec_path
534         fi
535       }
536       else CROOT="$ANSWER"
537       fi
538     }
539     done
540     echo "Configuring Wine for a no-windows install in $CROOT..."
541   
542     create_windows_directories
543   }
544   fi
545
546   # create $LCONF using the default config file $WINEINI  
547   if [ "$DOLOCALCONF" = 'yes' ] && [ "$CONVCONF" = 'no' ]
548   then {
549     sed "s|\"Path\" = \"/c\"\$|\"Path\" = \"${CROOT}\"|" $WINEINI > $TMPCONF
550     conf_reset_question default_config
551     conf_question low default_config \
552      "Created $LCONF using default Wine configuration." \
553      "You probably want to review the file, though."
554   }
555   fi
556
557   # now we really should install the registry
558   if [ "$DOREG" = 'auto' ]
559   then DOREG=yes
560   fi
561 }
562 fi
563 echo
564
565 #install the local config file $LCONF
566 if [ "$DOLOCALCONF" = 'yes' ]
567 then
568   if [ ! -w ~/.wine ]
569   then
570     mkdir ~/.wine
571   fi
572
573   if [ "$CONVCONF" = 'no' ]
574   then
575     cp $TMPCONF $LCONF > /dev/null
576   fi
577 else
578   DOREG=no
579 fi      
580
581 #install the global config file $GCONF
582 if [ "$DOGLOBALCONF" = 'yes' ]
583 then
584   if [ ! -f $sysconfdir ]
585   then
586     mkdir -p $sysconfdir
587   fi
588
589   cp $TMPCONF $GCONF > /dev/null
590 fi
591
592 # check whether we need to install default registry
593 # (not to be done if windows registry exists)
594 if [ "$DOREG" = 'auto' ]
595 then {
596   CROOT=`sed -n '/^\[Drive C\]$/,/^\[.*\]$/ s/^\"Path\" = \"\(.*\)\"/\1/p' $LCONF`
597   echo "Checking for real Windows registry..."
598   if [ -f "$CROOT/windows/system.dat" ]
599   then DOREG=no
600   elif [ -f "$CROOT/windows/system32/config/system" ]
601   then DOREG=no
602   elif [ -f "$CROOT/WINNT/system32/config/system" ]
603   then DOREG=no 
604   else DOREG=yes
605   fi
606   if [ "$DOREG" = 'yes' ]
607   then echo "Not found, default Wine registry will be installed."
608   else echo "Windows registry found, will not install default Wine registry."
609   fi
610   echo
611 }
612 fi
613
614 # install default registry entries
615 if [ "$DOREG" = 'yes' ]
616 then {
617   if [ "$BINDIST" = 'no' ]
618   then {
619     echo "Compiling regapi..."
620     (cd programs/regapi; make)
621     echo
622   }
623   fi
624   echo "Preparing to install default Wine registry entries..."
625
626   # edit config files so we don't have to run regapi under X
627   if [ "$CONVCONF" = 'yes' ]
628   then
629     mv $WINEINI $WINEINI.new
630     sed "s/GraphicsDriver=.*/GraphicsDriver=ttydrv/" $WINEINI.new > $WINEINI
631   else
632     mv $LCONF $LCONF.new
633     sed "s/\"GraphicsDriver\" = .*/\"GraphicsDriver\" = \"ttydrv\"/" $LCONF.new > $LCONF
634   fi
635
636   # create a temporary wineinstall.reg with fixed debugger path
637   $DEFCAT $DEFREG | sed "s|debugger/winedbg|${DEBUGGER}|" > $TMPREG
638
639   echo "Installing default Wine registry entries..."
640   echo
641   if ! $REGAPI setValue < $TMPREG > /dev/null
642   then {
643     rm -f $TMPREG
644     echo "Registry install failed."
645     conf_reset_question regapi_error
646     conf_question high regapi_error
647     exit 1
648   }
649   else {
650     # if we are converting from a .winerc file, running regapi once
651     # will ONLY convert .winerc -> ~/.wine/config, it will not import the
652     # registry data.  so if we are converting we need to run regapi twice
653     if [ "$CONVCONF" = 'yes' ]
654     then
655       if ! $REGAPI setValue < $TMPREG > /dev/null
656       then
657         rm -f $TMPREG
658         echo "Registry install failed."
659         conf_reset_question regapi_error
660         conf_question high regapi_error
661         exit 1
662       else
663         echo
664         echo "Registry entries successfully installed."
665       fi
666     else
667       echo
668       echo "Registry entries successfully installed."
669     fi
670   }
671   fi
672   rm -f $TMPREG
673   if [ "$SYSREG" = 'auto' ]
674   then SYSREG=yes
675   fi
676
677   # if we converted we need to change the graphics driver back and
678   # restore the original .winerc file
679   if [ "$CONVCONF" = 'yes' ]
680   then
681      mv $WINEINI.new $WINEINI
682   fi
683
684   sed "s/\"GraphicsDriver\" = .*/\"GraphicsDriver\" = \"x11drv\"/" $LCONF > $LCONF.new
685   mv $LCONF.new $LCONF
686 }
687 fi
688
689 # make root's registry global, if desired
690 if [ `whoami` = 'root' ] && [ "$DOREG" = 'yes' ] && [ "$SYSREG" = 'yes' ]
691 then {
692   [ -d ~/.wine ] || mkdir ~/.wine
693   if ! [ -f $sysconfdir/wine.userreg ]
694   then {
695     echo "Linking root's user registry hive to the global registry..."
696     [ -f ~/.wine/wine.userreg ] && cp ~/.wine/wine.userreg $sysconfdir/wine.userreg
697     ln -sf $sysconfdir/wine.userreg ~/.wine/wine.userreg
698   }
699   fi
700   if ! [ -f $sysconfdir/wine.systemreg ]
701   then {
702     echo "Linking root's system registry hive to the global registry..."
703     [ -f ~/.wine/system.reg ] && cp ~/.wine/system.reg $sysconfdir/wine.systemreg
704     ln -sf $sysconfdir/wine.systemreg ~/.wine/system.reg
705   }
706   fi
707 }
708 fi
709
710 # cleanup any temporary files that may remain
711 if [ -f $TMPCONF ]
712 then rm -f $TMPCONF
713 fi
714 if [ -f $TMPREG ]
715 then rm -f $TMPREG
716 fi
717
718
719 # it's a wrap
720 echo
721 echo "Installation complete for now. Good luck (this is still alpha software)."
722 echo "If you have problems with WINE, please read the documentation first,"
723 echo "as many kinds of potential problems are explained there."
724
725 exit 0