what you do is, get the "sources" go to the winehq.org download page, and scroll down to
ftp://ftp.ibiblio.org/pub/Linux/ALPHA/wine/development/
and download Wine-20041019.tar.gz, or whatever the latest version is, just don't download the "diff" ones. (im sure you'll figure this out) Then, just copy it to your home folder. After you download it, go into your filebrowser (you can be retarded and still know what the filebrowser is :] dont take that wrong way, some of you) then either single click, or double click on the file (whichever your desktop manager does for you) then it'll either bring up something like fileroller, and you just select all the files and make a new folder (it'll just say "no folder found. Create new folder now?") and just select all the files to be copied to that folder. If kde shows something up in a new window, which shows you all the files, just copy those files to a new folder. (which you'll name it Wine) Next will be the most tediouse, but its simple, realy, after this you'll probably make all your programs from source. Go into your terminal (usualy a tv screen, or monitor looking thing with a shell on it, on your task bar. Or in your start menu, just go to system tools or utilities [its usualy different for many distros, shouldn't be to difficult] and it should be called "terminal" or whatever. Now, in terminal, type "ls" to view the contents of your "home folder" which is what you see (most likely) when you open up your file browser. It will show your files in that directory. Now, if you have put the wine file in some "my documents" or "downloads" or something similar, then you need to "cd" or change directory into that directory. If you have it in the "home directory" then you don't need to change into any directory other then the one you see, but its nice to know how to "cd". K, moving on with changing directory. When you press "ls" it's listing the contents of the directory, and when it does, you'll see like maybe 2 or 3 files (if its a recent install of linux), and so just type this... NOTE: when I say "filedir" it means the name of the file you put the wine directory at.
$ cd filedir
Now press "ls" and you will see the new contents of the new directory, (and if you want to go back, just type "cd ..") now if you "cd"ed into the directory that you had the wine file in, or if you were already in it, now type "cd Wine" to go into the Wine directory.
The following are both safety procautions for both linux and unix, and just basic programming compiling commands to compile the program.
NOTE: I have not compiled wine in a while, but its realy no different then any other program I have compiled, and the other wines I have compiled. The first command just bare with me, usualy it won't have it unless you download the program through CVS. Which you realy don't need to know. Ask if you want to know.
Optional -- $ ./autogen.sh
Now for the real stuff...
$ ./configure
This will configure the wine source to be compatible with your computer (if its an apple, or sparc, or x86 or whatever, tho, I think it only works on x86 right now, and its only beta on the Apple) And also make sure your computer is even capable of running the program.
$ make
This now compiles your program, and after this finishes compiling, you can (possibly) run it on in the /src directory in the wine directory. (if its confusing, just forget it, and move on the next step, I probably should have not have said this. Your probably confused now, just move on.)
Now for the full install, this next command makes a script so you can run this program on all the users that you have your computer. It also makes a fake windows direcotry on your home direcotry, which is a hidden file called .wine, just do the same commands I showed you earlier and change into that direcoty, and change into dos_drive, and you'll be familiar with a usualy windows file system. [Program Files, windows, system32, :] ]
In the console, or terminal, type "su" which makes you put your root password in, so you can temperarily become a "super user" or "root" while loged into a user account. So...
$ su
Password: "Type your root password here, then enter"
You will see a number sign telling you are in root.
# make install
After wards, you will have wine successfully installed. Im afraid im running out of room to type, so if you want information on how to run wine, just reply! I hope this helps!