|
|
||||||||||||
|
begin: 2001-08-20 by Andre Alexander
Bell
0. Contents
1. Files to get
Kmud 1.0 is based upon the KDE-Libraries from KDE1, which have been published by
the KDE-Team in their latest version 1.1.2. These Libraries furthermore depend
on the QT-Libraries version 1.4x. Both, the KDE-Libraries 1.1.2 and the
QT-Libraries 1.44 are no longer in use under the actual KDE version 2.2 wich
as far as I know depends on QT-Libraries 2.3.0 < version < 3.0.
The packages a) and b) are available from
The third package c) is available from the Kmud Homepage (http://www.kmud.de) or
When you've downloaded the packages you can continue with compilation of the QT-Libraries, Section 2. The following sections assume that you've downloaded the packages to the 'root' of your home-directory.
2. Compiling the QT-Libraries
First you have to decide where to put the QT-Libraries, let's say into what
directory. If you would like to make a system wide installation you should
perhaps have root access and go with a subdirectory of /usr/lib or
/usr/local/lib. If you don't want systemwide installation you can go with a
directory within your home directory.
We start by making shure that we're in your home directory $ cd ~ Then we'll continue with extracting the QT-Library package. $ tar xjvf qt-1.44.tar.bz2 If this worked fine, we no longer do need the package and you (optionally) can delete the package itself $ rm qt-1.44.tar.bz2 Now we do have to export the QTDIR environment variable accordingly to the directory we choosed to put this lib in (may differ if you don't use bash, perhaps try setenv) $ export QTDIR=~/qt-1.44 Now we change into that directory and do the make steps. Notice that the first make step is only for a PC based Linux system. If your system differs read the compile info that comes with the QT-Libraries
$ cd qt-1.44 If this succeeded we finally prepend the new Library path to the LD_LIBRARY_PATH environment variable by (notice again, this may differ if you don't use bash as you shell. This won't be noticed again in the next section) $ export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH Now you can just step forward to get the kdelibs build by going through the next section.
3. Compiling the KDE-Libraries
The KDE-Libraries will be installed into their library directory after we have
compiled them within a source directory. So we first export the KDEDIR
environment variable to point to the KDE-Directory, where these libs will get installed in.
$ cd ~ Now we do extract the package $ tar xjvf kdelibs-1.1.2.tar.bz2 If you want to get rid of the package file you can (optionally) do $ rm kdelibs-1.1.2.tar.bz2 After all this stuff we can change into the directory and do a most secure configure call (I think this will get it work on nearly every platform)
$ cd kdelibs-1.1.2
This call should not stop complaining about the QT-Libraries now.
$ make
4. Compiling Kmud 1.0
Both QT-Libraries and KDE-Libraries are installed properly now and we can
continue to compile Kmud 1.0 itself. $ cd ~ Now we'll extract the Kmud 1.0 package $ tar xzvf kmud-1.0.tar.gz And as you allready may expect, we can now (optionally) delete the package $ rm kmud-1.0.tar.gz After we change into the kmud-directory we'll have to do the fascinating configure call
$ cd kmud-1.0 Now we can build and install Kmud 1.0
$ make And finally you can start Kmud 1.0 with $ kmud Closing this stuff with Stephans words: Happy mudding, The Kmud Developer Team
5. Known problems
That's it |
||