From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43086) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e0RZ0-0004Um-0i for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e0RYy-00047R-UB for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:10 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43681) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e0RYy-000478-Pk for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:08 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e0RYy-00076q-JU for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:08 -0400 Subject: [bug#28720] [PATCH 10/23] gnu: kfilemetadata: Enable support for PDF files and audio files. Resent-Message-ID: From: Hartmut Goebel Date: Fri, 6 Oct 2017 14:16:23 +0200 Message-Id: <20171006121636.30904-11-h.goebel@crazy-compilers.com> In-Reply-To: <20171006121636.30904-1-h.goebel@crazy-compilers.com> References: <20171006121636.30904-1-h.goebel@crazy-compilers.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28720@debbugs.gnu.org - 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 9f7bb41b7..3134a4c73 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") -- 2.13.5