https://bugs.kde.org/show_bug.cgi?id=358773
--- Comment #10 from Frederik Schwarzer <schwar...@kde.org> --- Ok then. :) You can find the code here: https://quickgit.kde.org/?p=kshisen.git See the "clone url". The command "apt-get build-dep kshisen" might save you some trouble getting the dependencies. For the build environment, I have the following variables in my ~/.bashrc file: export KF5=~/kde5apps/ export XDG_DATA_DIRS=$KF5/share:$XDG_DATA_DIRS:/usr/share export XDG_CONFIG_DIRS=$KF5/etc/xdg:$XDG_CONFIG_DIRS:/etc/xdg export PATH=$KF5/bin:$PATH export QT_PLUGIN_PATH=$KF5/lib/plugins:$KF5/lib64/plugins:$KF5/lib/x86_64-linux-gnu/plugins:$QT_PLUGIN_PATH export QML2_IMPORT_PATH=$KF5/lib/qml:$KF5/lib64/qml:$KF5/lib/x86_64-linux-gnu/qml export QML_IMPORT_PATH=$QML2_IMPORT_PATH export KDE_SESSION_VERSION=5 export KDE_FULL_SESSION=true Then, in KShisen source, create a folder named "build", cd into it and say: cmake -DCMAKE_PREFIX_PATH=~/kde5apps -DCMAKE_INSTALL_PREFIX=~/kde5apps -DCMAKE_BUILD_TYPE=Debug ../ If I forgot something here or you stumble over some other problem, feel free to ask. :) -- You are receiving this mail because: You are watching all bug changes.