2002-05-22 23:32:49 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Wrapper script to run Wine and Winelib apps from inside the source tree
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 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
|
|
|
|
#
|
|
|
|
|
|
|
|
# first determine the directory that contains the app itself
|
|
|
|
|
|
|
|
appdir=""
|
|
|
|
case "$0" in
|
|
|
|
*/*)
|
|
|
|
# $0 contains a path, use it
|
|
|
|
appdir=`dirname "$0"`
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# no directory in $0, search in PATH
|
|
|
|
saved_ifs=$IFS
|
|
|
|
IFS=:
|
|
|
|
for d in $PATH
|
|
|
|
do
|
|
|
|
IFS=$saved_ifs
|
|
|
|
if [ -x "$d/$0" ]
|
|
|
|
then
|
|
|
|
appdir="$d"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# now find the top-level directory of the source tree
|
|
|
|
|
|
|
|
if [ -x "$appdir/server/wineserver" ]
|
|
|
|
then topdir="$appdir"
|
|
|
|
elif [ -x "$appdir/../server/wineserver" ]
|
|
|
|
then topdir="$appdir/.."
|
|
|
|
elif [ -x "$appdir/../../server/wineserver" ]
|
|
|
|
then topdir="$appdir/../.."
|
|
|
|
elif [ -x "$appdir/../../../server/wineserver" ]
|
|
|
|
then topdir="$appdir/../../.."
|
|
|
|
else
|
|
|
|
echo "$0: could not locate Wine source tree"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# setup the environment
|
|
|
|
|
|
|
|
topdir=`cd "$topdir" && pwd`
|
|
|
|
|
|
|
|
if [ -n "$LD_LIBRARY_PATH" ]
|
|
|
|
then
|
2003-10-11 03:00:35 +02:00
|
|
|
LD_LIBRARY_PATH="$topdir/libs:$LD_LIBRARY_PATH"
|
2002-05-22 23:32:49 +02:00
|
|
|
else
|
2003-10-11 03:00:35 +02:00
|
|
|
LD_LIBRARY_PATH="$topdir/libs"
|
2002-05-22 23:32:49 +02:00
|
|
|
fi
|
2004-02-03 00:02:57 +01:00
|
|
|
if [ -n "$WINEDLLPATH" ]
|
|
|
|
then
|
|
|
|
WINEDLLPATH="$topdir/dlls:$topdir/programs:$WINEDLLPATH"
|
|
|
|
else
|
|
|
|
WINEDLLPATH="$topdir/dlls:$topdir/programs"
|
|
|
|
fi
|
2002-05-22 23:32:49 +02:00
|
|
|
WINESERVER="$topdir/server/wineserver"
|
2003-11-06 02:17:56 +01:00
|
|
|
WINELOADER="$topdir/loader/wine"
|
2002-05-22 23:32:49 +02:00
|
|
|
export LD_LIBRARY_PATH WINEDLLPATH WINESERVER WINELOADER
|
|
|
|
|
2002-05-29 00:48:17 +02:00
|
|
|
# any local settings ?
|
|
|
|
if [ -f "$topdir/.winewrapper" ]
|
|
|
|
then
|
|
|
|
. $topdir/.winewrapper
|
|
|
|
fi
|
|
|
|
|
2004-07-16 04:45:25 +02:00
|
|
|
# create prefix directory if needed
|
|
|
|
|
|
|
|
if [ -z "$WINEPREFIX" -a ! -d "$HOME/.wine" ]
|
|
|
|
then
|
|
|
|
"$topdir/tools/wineprefixcreate" --update --use-wine-tree "$topdir"
|
|
|
|
fi
|
|
|
|
|
2002-05-22 23:32:49 +02:00
|
|
|
# and run the application
|
|
|
|
|
|
|
|
case "$0" in
|
|
|
|
wine|*/wine)
|
|
|
|
exec "$WINELOADER" "$@"
|
|
|
|
;;
|
|
|
|
*/*)
|
|
|
|
[ -f "$0.exe.so" ] && exec "$WINELOADER" "$0.exe.so" "$@"
|
|
|
|
echo "$0: cannot find corresponding application"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
[ -f "$appdir/$0.exe.so" ] && exec "$WINELOADER" "$appdir/$0.exe.so" "$@"
|
|
|
|
echo "$0: cannot find corresponding application"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|