(actually, snapshots cannot be shared) |
(qtcreatOr) |
||
| (35 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | {{Infobox tutorial|time=3 hours|type=HowTo|distribution=SUSE Linux | + | {{Infobox tutorial|time=3 hours|type=HowTo|distribution=SUSE Linux 12.2|happyreaders=2|unhappyreaders=0}} |
| − | This describes | + | This describes how to use a virtual machine for building the latest KDE from sources. |
| − | + | ||
| − | + | ||
= Virtual Machine Setup = | = Virtual Machine Setup = | ||
| − | Create a virtual machine, e.g. using [http://www.linuxintro.org/wiki/ | + | Create a virtual machine, e.g. using [http://www.linuxintro.org/wiki/VirtualbOx VirtualBox]. Regarding harddisk: KDE 4 fits into 10 GB, however [[User:Tstaerk|I]] recommend 40GB, one partition. Regarding RAM: You will need at least 1GB ram for the virtual machine, of course more is better. |
;You will need to set your SUSE CD as your virtual machine's cdrom. | ;You will need to set your SUSE CD as your virtual machine's cdrom. | ||
| Line 18: | Line 16: | ||
chkconfig sshd on | chkconfig sshd on | ||
Inside the VM, install some needed packages: | Inside the VM, install some needed packages: | ||
| − | yast -i | + | yast -i libqt4-devel pcre-devel libxslt-devel libxml2-devel docbook-xsl-stylesheets git cyrus-sasl-devel libiodbc-devel \ |
| − | + | libdbusmenu-qt-devel giflib-devel strigi-devel libQtWebKit-devel libqimageblitz-devel libical-devel libgpgme-devel \ | |
| − | + | boost-devel libqjson-devel libredland-devel xcb-util-image-devel | |
| − | + | ||
| − | + | ||
;Now it is time to do a snapshot or clone from your VM. | ;Now it is time to do a snapshot or clone from your VM. | ||
| Line 28: | Line 24: | ||
== a few more steps == | == a few more steps == | ||
| − | Open a console as root | + | [http://www.linuxintro.org/wiki/open_a_console Open a console] as root |
su - | su - | ||
| Line 71: | Line 67: | ||
= Aquire and Build KDE as root = | = Aquire and Build KDE as root = | ||
| − | If something fails you may need to make clean. | + | If something fails you may need to make clean and rm CMakeCache. |
| + | |||
| + | == cmake == | ||
| + | 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 == | == automoc == | ||
| Line 78: | Line 82: | ||
git clone kde:automoc | git clone kde:automoc | ||
cd automoc | cd automoc | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
cmakekde | cmakekde | ||
| Line 91: | Line 88: | ||
git clone kde:attica | git clone kde:attica | ||
cd attica | cd attica | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
cmakekde | cmakekde | ||
| Line 102: | Line 93: | ||
shared desktop ontologies is needed by kdepimlibs in order to build Nepomuk (which is a part of kdelibs) | shared desktop ontologies is needed by kdepimlibs in order to build Nepomuk (which is a part of kdelibs) | ||
cd | cd | ||
| − | wget http://downloads.sourceforge.net/project/oscaf/shared-desktop-ontologies/0. | + | 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/ | |
| − | cd shared-desktop-ontologies-0. | + | |
cmake . && make && make install | cmake . && make && make install | ||
| + | |||
| + | == soprano == | ||
| + | cd | ||
| + | git clone kde:soprano | ||
| + | cd soprano | ||
| + | cmakekde | ||
== phonon == | == phonon == | ||
Phonon is needed for kdebase-runtime | Phonon is needed for kdebase-runtime | ||
cd | cd | ||
| − | git clone | + | git clone kde:phonon |
cd phonon | cd phonon | ||
| + | cmakekde | ||
| + | |||
| + | == akonadi == | ||
| + | Akonadi keeps personal information management data in a mysql database. It is needed for KDEPIMLIBS. | ||
| + | cd | ||
| + | git clone kde:akonadi | ||
| + | cd akonadi | ||
cmakekde | cmakekde | ||
| Line 125: | Line 128: | ||
kde4-config --prefix | kde4-config --prefix | ||
/usr/local | /usr/local | ||
| + | |||
| + | == nepomuk-core == | ||
| + | cd | ||
| + | git clone kde:nepomuk-core | ||
| + | cd nepomuk-core | ||
| + | cmakekde | ||
| + | |||
| + | == kdepimlibs == | ||
| + | kdepimlibs is needed for kde-runtime. | ||
| + | cd | ||
| + | git clone kde:kdepimlibs | ||
| + | cd kdepimlibs | ||
| + | cmakekde | ||
== kactivities == | == kactivities == | ||
| Line 151: | Line 167: | ||
cmakekde | cmakekde | ||
| − | = | + | = Next step = |
| − | + | Now you can start developing. Best, install QtCreator: | |
| − | + | yast -i qt-creator | |
| − | + | And learn how to create a new KDE project or import an existing one by reading [[qtcreator]]. | |
| − | + | ||
| − | And | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| 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 pcre-devel libxslt-devel libxml2-devel docbook-xsl-stylesheets git cyrus-sasl-devel libiodbc-devel \ libdbusmenu-qt-devel giflib-devel strigi-devel libQtWebKit-devel libqimageblitz-devel libical-devel libgpgme-devel \ boost-devel libqjson-devel libredland-devel xcb-util-image-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 and rm CMakeCache.
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
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
cd git clone kde:soprano cd soprano cmakekde
Phonon is needed for kdebase-runtime
cd git clone kde:phonon cd phonon cmakekde
Akonadi keeps personal information management data in a mysql database. It is needed for KDEPIMLIBS.
cd git clone kde:akonadi cd akonadi 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
cd git clone kde:nepomuk-core cd nepomuk-core cmakekde
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
Now you can start developing. Best, install QtCreator:
yast -i qt-creator
And learn how to create a new KDE project or import an existing one by reading qtcreator.