to install wine correctly just do the following :
(this is basically a repost from a previous topic with a minor modification)
download wine source, latest version.
(
http://www.winehq.org)
put the file in your /tmp dir
then :
su -
mount /windows/c (or whatever your windows partition is)
(if you installed from rpm's or your distribution came with wine)
rpm --erase --test wine (or something similar, don't know exact package name)
rpm --erase wine
(else if you installed from source)
cd (WINESOURCEDIR)
make uninstall
cd /usr/src
tar tzf /tmp/Wine-20020122.tar.gz
tar xzf /tmp/Wine-20020122.tar.gz
cd wine-20020122
./tools/wineinstall
(do everything up untill the local config file)
exit
cd /usr/src
./tools/wineinstall
(create the local configfile)
(then install half life (this went fine for me), switch to half life dir, and type
wine hl.exe -- hl.exe --console
(now if you absolutely positively want to make sure wine is compiled with opengl support you do the following steps)
su -
make uninstall
cd /usr/src/wine-20020122
make clean
rm config.cache
./configure --enable-opengl
make depend && make
make install
(make uninstall keeps your ~/.wine dir I believe so you don't have to run wineinstall again)
[ February 07, 2002: Message edited by: BadKarma ]