Unfortunately not. Wine (or WineX) is not all that difficult to install from source though. You just have to make sure you use the appropriate compile options in the build script, the defaults will not work with RH9 (at least not on the latest version that I installed). If you go with WineX I downloaded the CVS source according to the download page at transgaming.com and then changed the line in the "tools/wineinstall" script that looks like this:
- Code: Select all
CONFARGS="--enable-opengl"
to look like this:
- Code: Select all
CONFARGS="--enable-pthreads --enable-opengl"
Another thing I had to do was install the nVidia GL header files. If you are using the nVidia drivers from nvidia.com then you will also need to install them. The driver installation program has an option to install them and does not do so by default.
Also if you have upgraded your system (apt-get dist-upgrade), and I would suggest that you do, then you will also want to install the latest kernel and set it to be the default before your WineX will run successfully. To upgrade your kernel via apt-get do:
- Code: Select all
# apt-get install kernel
Which will bring up a list of available kernels. I installed 2.4.20-13.9 by:
- Code: Select all
apt-get install kernel#2.4.20-13.9
Then edit your /etc/grub.conf and set that one to be the default.