| Time to replay | 3 hours |
| Example Distro | SUSE Linux 12.2 |
| Type | HowTo |
| Happy readers | 2 |
| Unhappy readers | 0 |
This describes how to use a virtual machine for building the latest KDE from sources.
Contents |
Create a virtual machine, e.g. using VirtualBox. Regarding harddisk: KDE 4 fits into 10 GB, however I recommend 40GB, one partition. Regarding RAM: You will need at least 1GB ram for the virtual machine, of course more is better.
To be able to log in to your VM using ssh, stop and disable the firewall:
rcSuSEfirewall2 stop chkconfig SuSEfirewall2_setup off chkconfig SuSEfirewall2_init off /etc/init.d/sshd start chkconfig sshd on
Inside the VM, install some needed packages:
yast -i libqt4-devel libsoprano-devel pcre-devel libxslt-devel libxml2-devel docbook-xsl-stylesheets git cmake \ libdbusmenu-qt-devel giflib-devel strigi-devel libQtWebKit-devel libqimageblitz-devel libical-devel libgpgme-devel \ boost-devel libqjson-devel
You will be able to return to this machine state whenever you want.
Open a console as root
su -
If and only if you have a /lib64 path, you are on an x64 distribution. Make sure you have the needed environment variables and alias set by having a file /root/.bashrc.
cd cat >.bashrc<<EOF export KDEDIR=/usr/local alias cmakekde="cmake . -DCMAKE_INSTALL_PREFIX=\$KDEDIR -DLIB_SUFFIX=64 -DCMAKE_BUILD_TYPE=debugfull && make -j8 && make install" alias cmakekdelibs="cmake ../kdelibs -DCMAKE_INSTALL_PREFIX=\$KDEDIR -DLIB_SUFFIX=64 -DCMAKE_BUILD_TYPE=debugfull && make -j8 && make install" alias makeqt="./configure -dbus -openssl -plugin-sql-mysql -libdir /usr/lib64 -prefix /usr && make -j8 && make install" export QTDIR=/usr EOF cat >.gitconfig<<EOF [url "git://anongit.kde.org/"] insteadOf = kde: [url "ssh://git@git.kde.org/"] pushInsteadOf = kde: EOF
Now activate this file
. /root/.bashrc
Make sure you have the needed environment variables and alias set by having a file /root/.bashrc.
cd cat >.bashrc<<EOF export KDEDIR=/usr/local alias cmakekde="cmake . -DCMAKE_INSTALL_PREFIX=\$KDEDIR -DCMAKE_BUILD_TYPE=debugfull && make -j8 && make install" alias cmakekdelibs="cmake ../kdelibs -DCMAKE_INSTALL_PREFIX=\$KDEDIR -DCMAKE_BUILD_TYPE=debugfull && make -j8 && make install" alias makeqt="./configure -dbus -openssl -plugin-sql-mysql -prefix /usr && make -j8 && make install" export QTDIR=/usr EOF cat >.gitconfig<<EOF [url "git://anongit.kde.org/"] insteadOf = kde: [url "ssh://git@git.kde.org/"] pushInsteadOf = kde: EOF
Now activate this file
. /root/.bashrc
If something fails you may need to make clean.
Install the latest version of cmake:
cd wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz tar xvzf cmake-2.8.10.2.tar.gz cd cmake-2.8.10.2 ./configure && make -j4 && make install
automoc is needed for akonadi.
cd git clone kde:automoc cd automoc cmakekde
Akonadi keeps personal information management data in a mysql database. It is needed for KDEPIMLIBS.
cd git clone kde:akonadi cd akonadi cmakekde
cd git clone kde:attica cd attica cmakekde
shared desktop ontologies is needed by kdepimlibs in order to build Nepomuk (which is a part of kdelibs)
cd wget http://downloads.sourceforge.net/project/oscaf/shared-desktop-ontologies/0.10.0/shared-desktop-ontologies-0.10.0.tar.bz2 tar xvjf shared-desktop-ontologies-0.10.0.tar.bz2 cd shared-desktop-ontologies-0.10.0/ cmake . && make && make install
Phonon is needed for kdebase-runtime
cd git clone git://anongit.kde.org/phonon cd phonon cmakekde
KDELIBS requires an out-of-source build, that is why it is more complicated to build:
cd git clone kde:kdelibs mkdir kdelibs-build cd kdelibs-build cmakekdelibs
Verify it has been correctly installed - the following must be possible:
kde4-config --prefix /usr/local
kdepimlibs is needed for kde-runtime.
cd git clone kde:kdepimlibs cd kdepimlibs cmakekde
kactivities is needed for kde-workspace.
cd git clone kde:kactivities cd kactivities cmakekde
cd git clone kde:kde-baseapps git clone kde:konsole git clone kde:kde-workspace git clone kde:kde-runtime cd kde-baseapps cmakekde cd cd konsole cmakekde cd cd kde-workspace cmakekde cd cd kde-runtime cmakekde