K3b/Getting Started: Difference between revisions

From KDE Community Wiki
< K3b
No edit summary
No edit summary
Line 10: Line 10:
export XDG_DATA_DIRS=${K3B_INSTALL_PREFIX}/share:${XDG_DATA_DIRS}
export XDG_DATA_DIRS=${K3B_INSTALL_PREFIX}/share:${XDG_DATA_DIRS}
</code>
</code>
Relogin to let changes take effect.


===Getting Source Code===
===Getting Source Code===
Line 53: Line 54:
k3b
k3b
</code>
</code>
===Contact Developers===
If you have prepared a patch or just want to contact K3b developers please write to [https://mail.kde.org/mailman/listinfo/k3b [email protected]] mailing list. You can also catch them on [irc://irc.freenode.org/#k3b #k3b on Freenode].

Revision as of 16:00, 9 May 2010

Development

This section describes how to start development of K3b.

Setting Up Environment

Create target install directory. For the sake of example we will assume your home directory is /home/joe and you will install your compiled K3b to /home/joe/k3b/install. Add following lines to your ~/.bashrc file: export K3B_INSTALL_PREFIX=/home/joe/k3b/install export KDEDIRS=${K3B_INSTALL_PREFIX}:${KDEDIRS} export PATH=${K3B_INSTALL_PREFIX}/bin:${PATH} export XDG_DATA_DIRS=${K3B_INSTALL_PREFIX}/share:${XDG_DATA_DIRS} Relogin to let changes take effect.

Getting Source Code

K3b sources code is hosted in KDE Subversion repository. It is a part of KDE Extragear

If you don't have a SVN account you can checkout the source code using anonymous access repository: svn checkout svn://anonsvn.kde.org/home/kde/trunk/extragear/multimedia/k3b . If you have SVN account you should go the other way: svn checkout svn+ssh://[email protected]/home/kde/trunk/extragear/multimedia/k3b . This will give you read-write access to the repository.

Compilation

K3b, as the most KDE applications, uses CMa/home/joe/k3b/installke for configuration and compilation of source code.

First the build directory should be created. mkdir build cd build It is guaranteed all files created during build will be placed in this directory. That means that if you want to clean up source tree after build the only thing you need to do is to remove build directory.

Now we need to configure the source tree. This have to be done only once, later this step will be invoked automatically when necessary. If you are familiar with [Autotools] this step corresponds to ./configure command. cmake .. \

     -DCMAKE_INSTALL_PREFIX=/home/joe/k3b/install \
     -DKDE4_AUTH_POLICY_FILES_INSTALL_DIR=/home/joe/k3b/install/share/polkit-1/actions \
     -DK3B_DEBUG=ON \
     -DCMAKE_BUILD_TYPE=Debug

CMake will search for all required and optional libraries.

Finally to compile the source code and install it you should call: make && make install

After that compiled K3b will be placed in /home/joe/k3b/install directory. Now you can run K3b by simply typing in the console: k3b

Contact Developers

If you have prepared a patch or just want to contact K3b developers please write to [email protected] mailing list. You can also catch them on #k3b on Freenode.