Projects/K3b
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}
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.