Some bugfixes, another function for packaging, and some text
reformatting from Eric Maryniak.
This commit is contained in:
parent
67c883be31
commit
6e143b3379
|
@ -27,6 +27,11 @@
|
||||||
# added --enable-opengl to default confargs
|
# added --enable-opengl to default confargs
|
||||||
# added conf_question, conf_yesno_answer, and conf_string_answer functions
|
# added conf_question, conf_yesno_answer, and conf_string_answer functions
|
||||||
# added DEFCAT variable
|
# added DEFCAT variable
|
||||||
|
# (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
|
||||||
|
|
||||||
#--- defaults (change these if you are a packager)
|
#--- defaults (change these if you are a packager)
|
||||||
CONFARGS=--enable-opengl # configure args, e.g. --prefix=/usr --sysconfdir=/etc
|
CONFARGS=--enable-opengl # configure args, e.g. --prefix=/usr --sysconfdir=/etc
|
||||||
|
@ -85,6 +90,12 @@ function conf_question {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function conf_reset_question {
|
||||||
|
# parameters: $1 = question-id
|
||||||
|
# this is used to flush any cached answers and "already-displayed" flags
|
||||||
|
shift # dummy command
|
||||||
|
}
|
||||||
|
|
||||||
function conf_yesno_answer {
|
function conf_yesno_answer {
|
||||||
unset ANSWER
|
unset ANSWER
|
||||||
while [ "$ANSWER" != 'yes' ] && [ "$ANSWER" != 'no' ]
|
while [ "$ANSWER" != 'yes' ] && [ "$ANSWER" != 'no' ]
|
||||||
|
@ -135,7 +146,7 @@ if [ $RET -eq 0 ]; then
|
||||||
echo "Sorry, I won't install Wine when an rpm version is still installed."
|
echo "Sorry, I won't install Wine when an rpm version is still installed."
|
||||||
echo "(Wine support suffered from way too many conflicts)"
|
echo "(Wine support suffered from way too many conflicts)"
|
||||||
echo "Have a nice day !"
|
echo "Have a nice day !"
|
||||||
exit
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -186,7 +197,8 @@ then {
|
||||||
echo "Hmm, looks like WINE is already compiled. I'll skip that too, I guess."
|
echo "Hmm, looks like WINE is already compiled. I'll skip that too, I guess."
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
echo "Compiling WINE. Grab a lunch or two, rent a video, or whatever, in the meantime..."
|
echo "Compiling WINE. Grab a lunch or two, rent a video, or whatever,"
|
||||||
|
echo "in the meantime..."
|
||||||
echo
|
echo
|
||||||
if ! { make depend && make; }
|
if ! { make depend && make; }
|
||||||
then {
|
then {
|
||||||
|
@ -298,13 +310,13 @@ then {
|
||||||
then {
|
then {
|
||||||
echo
|
echo
|
||||||
echo -n "Searching for an existing Windows installation..."
|
echo -n "Searching for an existing Windows installation..."
|
||||||
if ! $WINECONF > $CONF 2>/dev/null
|
if ! $WINECONF -inifile "$WINEINI" > $CONF 2>/dev/null
|
||||||
then {
|
then {
|
||||||
rm -f $CONF
|
rm -f $CONF
|
||||||
echo " not found."
|
echo " not found."
|
||||||
conf_question low do_without_windows \
|
conf_question low do_without_windows \
|
||||||
"Windows was not found on your system, so I assume you want a Wine-only installation." \
|
"Windows was not found on your system, so I assume you want" \
|
||||||
"Am I correct?"
|
"a Wine-only installation. Am I correct?"
|
||||||
conf_yesno_answer "(yes/no) "
|
conf_yesno_answer "(yes/no) "
|
||||||
if [ "$ANSWER" = 'no' ]
|
if [ "$ANSWER" = 'no' ]
|
||||||
then {
|
then {
|
||||||
|
@ -318,6 +330,7 @@ then {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
echo " found."
|
echo " found."
|
||||||
|
conf_reset_question windows_found
|
||||||
conf_question low windows_found \
|
conf_question low windows_found \
|
||||||
"Created $CONF using your existing Windows installation." \
|
"Created $CONF using your existing Windows installation." \
|
||||||
"You probably want to review the file, though."
|
"You probably want to review the file, though."
|
||||||
|
@ -341,25 +354,31 @@ then {
|
||||||
else DCROOT=/c
|
else DCROOT=/c
|
||||||
fi
|
fi
|
||||||
conf_question low drivec_path \
|
conf_question low drivec_path \
|
||||||
"Configuring Wine without Windows. Some fake Windows directories must be created, to" \
|
"Configuring Wine without Windows." \
|
||||||
"hold any .ini files, DLLs, and start menu entries your applications may need to install."
|
"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?"
|
||||||
while [ -z "$CROOT" ]
|
while [ -z "$CROOT" ]
|
||||||
do {
|
do {
|
||||||
conf_string_answer "Where would you like your fake C drive to be placed? (default is $DCROOT)"
|
conf_string_answer "(default is $DCROOT) "
|
||||||
if [ -z "$ANSWER" ]
|
if [ -z "$ANSWER" ]
|
||||||
then CROOT="$DCROOT"
|
then CROOT="$DCROOT"
|
||||||
fi
|
elif ! [ -d "$ANSWER" ]
|
||||||
if ! [ -d "$ANSWER" ]
|
|
||||||
then {
|
then {
|
||||||
if mkdir -p "$ANSWER"
|
if mkdir -p "$ANSWER"
|
||||||
then CROOT="$ANSWER"
|
then CROOT="$ANSWER"
|
||||||
|
else conf_reset_question drivec_path
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
else CROOT="$ANSWER"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
done
|
done
|
||||||
echo "Configuring Wine for a no-windows install in $CROOT..."
|
echo "Configuring Wine for a no-windows install in $CROOT..."
|
||||||
for tdir in "$CROOT/windows" "$CROOT/windows/system" "$CROOT/windows/Start Menu" "$CROOT/windows/Start Menu/Programs" "$CROOT/Common Files" "$CROOT/windows/Profiles/Administrator" "$CROOT/Program Files"
|
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"
|
||||||
do [ -d "$tdir" ] || mkdir "$tdir"
|
do [ -d "$tdir" ] || mkdir "$tdir"
|
||||||
done
|
done
|
||||||
[ -f "$CROOT/windows/win.ini" ] || cp "$WININI" "$CROOT/windows/win.ini"
|
[ -f "$CROOT/windows/win.ini" ] || cp "$WININI" "$CROOT/windows/win.ini"
|
||||||
|
@ -367,6 +386,7 @@ then {
|
||||||
if [ "$DOCONF" = 'yes' ]
|
if [ "$DOCONF" = 'yes' ]
|
||||||
then {
|
then {
|
||||||
sed "s|Path=/c\$|Path=${CROOT}|" $WINEINI > $CONF
|
sed "s|Path=/c\$|Path=${CROOT}|" $WINEINI > $CONF
|
||||||
|
conf_reset_question default_config
|
||||||
conf_question low default_config \
|
conf_question low default_config \
|
||||||
"Created $CONF using default Wine configuration." \
|
"Created $CONF using default Wine configuration." \
|
||||||
"You probably want to review the file, though."
|
"You probably want to review the file, though."
|
||||||
|
@ -442,6 +462,7 @@ then {
|
||||||
then {
|
then {
|
||||||
rm -f $TMPCONF $TMPREG
|
rm -f $TMPCONF $TMPREG
|
||||||
echo "Registry install failed."
|
echo "Registry install failed."
|
||||||
|
conf_reset_question regapi_error
|
||||||
conf_question high regapi_error
|
conf_question high regapi_error
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
@ -461,14 +482,14 @@ then {
|
||||||
if ! [ -f $sysconfdir/wine.userreg ]
|
if ! [ -f $sysconfdir/wine.userreg ]
|
||||||
then {
|
then {
|
||||||
echo "Linking root's user registry hive to the global registry..."
|
echo "Linking root's user registry hive to the global registry..."
|
||||||
cp ~/.wine/wine.userreg $sysconfdir/wine.userreg
|
[ -f ~/.wine/wine.userreg ] && cp ~/.wine/wine.userreg $sysconfdir/wine.userreg
|
||||||
ln -sf $sysconfdir/wine.userreg ~/.wine/wine.userreg
|
ln -sf $sysconfdir/wine.userreg ~/.wine/wine.userreg
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
if ! [ -f $sysconfdir/wine.systemreg ]
|
if ! [ -f $sysconfdir/wine.systemreg ]
|
||||||
then {
|
then {
|
||||||
echo "Linking root's system registry hive to the global registry..."
|
echo "Linking root's system registry hive to the global registry..."
|
||||||
cp ~/.wine/system.reg $sysconfdir/wine.systemreg
|
[ -f ~/.wine/system.reg ] && cp ~/.wine/system.reg $sysconfdir/wine.systemreg
|
||||||
ln -sf $sysconfdir/wine.systemreg ~/.wine/system.reg
|
ln -sf $sysconfdir/wine.systemreg ~/.wine/system.reg
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
@ -480,3 +501,5 @@ echo
|
||||||
echo "Installation complete for now. Good luck (this is still alpha software)."
|
echo "Installation complete for now. Good luck (this is still alpha software)."
|
||||||
echo "If you have problems with WINE, please read the documentation first,"
|
echo "If you have problems with WINE, please read the documentation first,"
|
||||||
echo "as many kinds of potential problems are explained there."
|
echo "as many kinds of potential problems are explained there."
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue