https://bugs.kde.org/show_bug.cgi?id=396515
--- Comment #5 from Mauro Carvalho Chehab <mchehab+sams...@kernel.org> --- (In reply to Kenneth from comment #4) > I managed to install the needed dev tools and headers for Debian/Ubuntu, but > ran into problems with the following instructions (from the README.md file) > > $ sudo apt-get install fakeroot dpkg-dev pkg-kde-tools dephelper > Reading package lists... Done > Building dependency tree > Reading state information... Done > E: Unable to locate package dephelper It should be, instead, debhelper > > $ git clone git://anonscm.debian.org/pkg-kde/kde-extras/kaffeine.git > deb-build > Cloning into 'deb-build'... > fatal: unable to connect to anonscm.debian.org: > anonscm.debian.org[0: 194.177.211.202]: errno=Connection refused > anonscm.debian.org[1: 2001:648:2ffc:deb::211:202]: errno=Connection refused I never used that part of the instructions myself. What I do here is that I install all local dependencies (the first part of the instruction), and then: $ cmake . && make && make install (that will install Kaffeine under /usr/local) Anyway, if you prefer to generate a Debian package, I updated README.md to point to the current location of the Debian's Kaffeine build git tree: git clone https://salsa.debian.org/qt-kde-team/extras/kaffeine.git deb-build cd deb-build rsync -ua --exclude '.git*' --exclude deb-build .. . rm CMakeCache.txt cat Changelog |grep Version|head -1|perl -ne 'if (m/Version\s*(\S+)/) { print "k affeine ($1-1) unstable; urgency=medium\n\n * New upstream release.\n" }' >debian/c hangelog echo " -- root <root@localhost> $(date -R)" >>debian/changelog fakeroot debian/rules binary I can't check if it will build successfully, as my test machine is Ubuntu, and I'm using a newer version of libVLC than the one packaged for Debian. -- You are receiving this mail because: You are watching all bug changes.