htgoebel pushed a commit to branch wip-qt-paths in repository guix. commit cd15c9c256859b988de53ff123953f7819fbdfa7 Author: Hartmut Goebel <h.goe...@crazy-compilers.com> Date: Tue Sep 19 20:06:18 2017 +0200
gnu: kfilemetadata: Enable support for PDF files and audio files. - Qt5 Multimedia module is needed to bild an extractor for audio files. - poppler, which was defined as input, is not including the requested Qt support, thus poppler-qt is needed. * gnu/packages/kde-frameworks.scm (kfilemetadata)[inuts]: Add qtmultimedia, replace poppler by poppler-qt5. [native-inputs]: Add pkg-config. --- gnu/packages/kde-frameworks.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 9f7bb41..3134a4c 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1505,18 +1505,21 @@ from DocBook files.") #t))))) (native-inputs `(("extra-cmake-modules" ,extra-cmake-modules) + ("pkg-config" ,pkg-config) ("python-2" ,python-2))) (inputs `(("attr" ,attr) + ;; TODO: EPub http://sourceforge.net/projects/ebook-tools ("karchive" ,karchive) ("ki18n" ,ki18n) + ("qtmultimedia" ,qtmultimedia) ("qtbase" ,qtbase) ;; Required run-time packages ("catdoc" ,catdoc) ;; Optional run-time packages ("exiv2" ,exiv2) ("ffmpeg" ,ffmpeg) - ("poppler" ,poppler) + ("poppler-qt5" ,poppler-qt5) ;; runtime?? ("taglib" ,taglib))) (home-page "https://community.kde.org/Frameworks") (synopsis "Extract metadata from different fileformats")