2004-04-01 07:03:27 +02:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
|
|
|
|
# Script to create the initial WINEPREFIX directory
|
|
|
|
|
#
|
|
|
|
|
# Copyright 1999 Ove K<>ven
|
|
|
|
|
# Copyright 2004 Chris Morgan
|
|
|
|
|
# Copyright 2004 Alexandre Julliard
|
|
|
|
|
#
|
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
#
|
|
|
|
|
|
2004-05-06 00:09:09 +02:00
|
|
|
|
usage()
|
|
|
|
|
{
|
|
|
|
|
echo "Usage: $0 [options]"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "Options:"
|
2004-05-11 06:29:18 +02:00
|
|
|
|
echo " -h, --help Display this message"
|
|
|
|
|
echo " --prefix <dir> Directory to create (default: \$WINEPREFIX or ~/.wine)"
|
|
|
|
|
echo " -q, --quiet Don't print status messages"
|
2005-04-20 16:26:33 +02:00
|
|
|
|
echo " --use-wine-tree <dir> Run from the Wine build tree <dir>"
|
2005-04-20 15:12:14 +02:00
|
|
|
|
echo " -w, --wait Wait for the wineserver to exit before returning"
|
2004-05-06 00:09:09 +02:00
|
|
|
|
echo ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
dlldir="@dlldir@"
|
|
|
|
|
datadir="@datadir@/wine"
|
|
|
|
|
|
2005-04-20 15:12:14 +02:00
|
|
|
|
do_wait=0
|
2004-05-11 06:29:18 +02:00
|
|
|
|
quiet=0
|
2004-05-06 00:09:09 +02:00
|
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]
|
|
|
|
|
do
|
|
|
|
|
case "$1" in
|
2004-05-11 06:29:18 +02:00
|
|
|
|
-h|--help)
|
2004-05-06 00:09:09 +02:00
|
|
|
|
usage
|
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
--prefix)
|
|
|
|
|
WINEPREFIX="$2"
|
|
|
|
|
shift 2
|
|
|
|
|
;;
|
2004-05-11 06:29:18 +02:00
|
|
|
|
-q|--quiet)
|
|
|
|
|
quiet=1
|
|
|
|
|
shift
|
|
|
|
|
;;
|
2005-04-20 15:12:14 +02:00
|
|
|
|
-w|--wait)
|
|
|
|
|
do_wait=1
|
|
|
|
|
shift
|
|
|
|
|
;;
|
2004-05-06 00:09:09 +02:00
|
|
|
|
--use-wine-tree)
|
|
|
|
|
topdir=`cd "$2" && pwd`
|
|
|
|
|
if [ -x "$topdir/server/wineserver" ]
|
|
|
|
|
then
|
|
|
|
|
WINELOADER="$topdir/wine"
|
2004-12-16 15:22:37 +01:00
|
|
|
|
WINESERVER="$topdir/server/wineserver"
|
|
|
|
|
if [ -n "$LD_LIBRARY_PATH" ]
|
|
|
|
|
then
|
|
|
|
|
LD_LIBRARY_PATH="$topdir/libs:$LD_LIBRARY_PATH"
|
|
|
|
|
else
|
|
|
|
|
LD_LIBRARY_PATH="$topdir/libs"
|
|
|
|
|
fi
|
|
|
|
|
export LD_LIBRARY_PATH
|
2005-04-20 16:26:33 +02:00
|
|
|
|
|
|
|
|
|
# find the source directory
|
|
|
|
|
link=`readlink "$WINELOADER"`
|
|
|
|
|
if [ -z "$link" ]
|
|
|
|
|
then
|
|
|
|
|
topsrcdir="$topdir"
|
|
|
|
|
else
|
|
|
|
|
link=`dirname "$link"`
|
|
|
|
|
case "$link" in
|
|
|
|
|
/*) topsrcdir=`cd "$link/.." && pwd` ;;
|
|
|
|
|
*) topsrcdir=`cd "$topdir/$link/.." && pwd` ;;
|
|
|
|
|
esac
|
|
|
|
|
fi
|
|
|
|
|
|
2004-05-06 00:09:09 +02:00
|
|
|
|
dlldir="$topdir/programs"
|
2005-04-20 16:26:33 +02:00
|
|
|
|
datadir="$topsrcdir/tools"
|
2004-05-06 00:09:09 +02:00
|
|
|
|
else
|
2005-04-20 16:26:33 +02:00
|
|
|
|
echo "$2 is not a valid Wine build tree"
|
2004-05-06 00:09:09 +02:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
shift 2
|
|
|
|
|
;;
|
|
|
|
|
*)
|
2004-05-11 06:29:18 +02:00
|
|
|
|
echo "Unknown option $1"
|
2004-05-06 00:09:09 +02:00
|
|
|
|
usage
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
2004-04-01 07:03:27 +02:00
|
|
|
|
|
|
|
|
|
WINEPREFIX="${WINEPREFIX:-$HOME/.wine}"
|
|
|
|
|
|
2004-05-11 06:29:18 +02:00
|
|
|
|
if [ -d "$WINEPREFIX" ] || mkdir "$WINEPREFIX"; then :
|
2004-04-01 07:03:27 +02:00
|
|
|
|
else
|
2004-05-11 06:29:18 +02:00
|
|
|
|
echo "Could not create $WINEPREFIX, aborting"
|
|
|
|
|
exit 1
|
2004-04-01 07:03:27 +02:00
|
|
|
|
fi
|
|
|
|
|
|
2004-05-06 00:09:09 +02:00
|
|
|
|
WINEPREFIX=`cd "$WINEPREFIX" && pwd`
|
2004-05-14 02:43:50 +02:00
|
|
|
|
|
|
|
|
|
# Create the drive symlinks
|
|
|
|
|
|
|
|
|
|
if [ ! -d "$WINEPREFIX/dosdevices" ]
|
|
|
|
|
then
|
|
|
|
|
mkdir "$WINEPREFIX/dosdevices"
|
|
|
|
|
[ -d "$WINEPREFIX/drive_c" ] || mkdir "$WINEPREFIX/drive_c"
|
|
|
|
|
ln -s "../drive_c" "$WINEPREFIX/dosdevices/c:"
|
|
|
|
|
ln -s "/" "$WINEPREFIX/dosdevices/z:"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
CROOT="$WINEPREFIX/dosdevices/c:"
|
2004-04-01 07:03:27 +02:00
|
|
|
|
|
|
|
|
|
# Create the directory tree
|
|
|
|
|
|
|
|
|
|
for i in \
|
|
|
|
|
"$CROOT/windows" \
|
|
|
|
|
"$CROOT/windows/command" \
|
|
|
|
|
"$CROOT/windows/fonts" \
|
|
|
|
|
"$CROOT/windows/inf" \
|
|
|
|
|
"$CROOT/windows/system" \
|
2005-08-15 16:53:35 +02:00
|
|
|
|
"$CROOT/windows/system32" \
|
|
|
|
|
"$CROOT/windows/system32/drivers" \
|
2004-04-01 07:03:27 +02:00
|
|
|
|
"$CROOT/windows/temp"
|
|
|
|
|
do
|
2004-05-06 00:09:09 +02:00
|
|
|
|
[ -d "$i" ] || mkdir "$i"
|
2004-04-01 07:03:27 +02:00
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# Create the application symlinks
|
|
|
|
|
|
|
|
|
|
link_app()
|
|
|
|
|
{
|
2004-05-06 00:09:09 +02:00
|
|
|
|
rm -f "$2" && ln -s "$dlldir/$1.exe.so" "$2" || echo "Warning: failed to create $2"
|
2004-04-01 07:03:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
link_app start "$CROOT/windows/command/start.exe"
|
|
|
|
|
link_app notepad "$CROOT/windows/notepad.exe"
|
|
|
|
|
link_app regedit "$CROOT/windows/regedit.exe"
|
|
|
|
|
link_app rundll32 "$CROOT/windows/rundll32.exe"
|
2005-08-15 16:53:35 +02:00
|
|
|
|
link_app wcmd "$CROOT/windows/system32/wcmd.exe"
|
|
|
|
|
link_app control "$CROOT/windows/system32/control.exe"
|
|
|
|
|
link_app winhelp "$CROOT/windows/system32/help.exe"
|
|
|
|
|
link_app msiexec "$CROOT/windows/system32/msiexec.exe"
|
|
|
|
|
link_app notepad "$CROOT/windows/system32/notepad.exe"
|
|
|
|
|
link_app progman "$CROOT/windows/system32/progman.exe"
|
|
|
|
|
link_app regsvr32 "$CROOT/windows/system32/regsvr32.exe"
|
|
|
|
|
link_app winemine "$CROOT/windows/system32/winmine.exe"
|
|
|
|
|
link_app winver "$CROOT/windows/system32/winver.exe"
|
2004-04-01 07:03:27 +02:00
|
|
|
|
link_app uninstaller "$CROOT/windows/uninstall.exe"
|
|
|
|
|
link_app winhelp "$CROOT/windows/winhelp.exe"
|
|
|
|
|
link_app winhelp "$CROOT/windows/winhlp32.exe"
|
|
|
|
|
link_app winebrowser "$CROOT/windows/winebrowser.exe"
|
|
|
|
|
|
|
|
|
|
# Copy the .inf script and run it
|
|
|
|
|
|
2004-05-06 00:09:09 +02:00
|
|
|
|
cp "$datadir/wine.inf" "$CROOT/windows/inf/wine.inf"
|
2004-04-01 07:03:27 +02:00
|
|
|
|
export WINEPREFIX
|
2005-04-20 15:12:14 +02:00
|
|
|
|
"${WINELOADER:-wine}" rundll32.exe setupapi.dll,InstallHinfSection DefaultInstall 128 wine.inf
|
2004-04-01 07:03:27 +02:00
|
|
|
|
|
|
|
|
|
# Wait for the wineserver to finish
|
|
|
|
|
|
2005-04-20 15:12:14 +02:00
|
|
|
|
if [ $do_wait = 1 ]
|
2004-05-06 00:09:09 +02:00
|
|
|
|
then
|
2005-04-20 15:12:14 +02:00
|
|
|
|
"${WINESERVER:-wineserver}" -w
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ $quiet = 0 ]
|
|
|
|
|
then
|
|
|
|
|
echo "$WINEPREFIX updated successfully."
|
2004-05-06 00:09:09 +02:00
|
|
|
|
fi
|