From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41907) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1idzgA-0001Ik-UP for guix-patches@gnu.org; Sun, 08 Dec 2019 11:45:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1idzg8-0008Lu-3C for guix-patches@gnu.org; Sun, 08 Dec 2019 11:45:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46191) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1idzg7-0008KR-Ut for guix-patches@gnu.org; Sun, 08 Dec 2019 11:45:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1idzg7-0002yW-SS for guix-patches@gnu.org; Sun, 08 Dec 2019 11:45:03 -0500 Subject: [bug#38532] [PATCH 04/11] gnu: Add k3b. Resent-Message-ID: From: Hartmut Goebel Date: Sun, 8 Dec 2019 17:43:48 +0100 Message-Id: <20191208164355.7374-4-h.goebel@crazy-compilers.com> In-Reply-To: <20191208164355.7374-1-h.goebel@crazy-compilers.com> References: <20191208164355.7374-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 38532@debbugs.gnu.org * gnu/packages/kde-multimedia.scm (k3b): New variable. --- gnu/packages/kde-multimedia.scm | 69 ++++++++++++++++++++++++++++++++- 1 file changed, 68 insertions(+), 1 deletion(-) diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm index a55ae569a4..cb94b87d6b 100644 --- a/gnu/packages/kde-multimedia.scm +++ b/gnu/packages/kde-multimedia.scm @@ -23,9 +23,16 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages) + #:use-module (gnu packages base) + #:use-module (gnu packages gnome) #:use-module (gnu packages kde-frameworks) #:use-module (gnu packages mp3) - #:use-module (gnu packages qt)) + #:use-module (gnu packages music) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages qt) + #:use-module (gnu packages video) + #:use-module (gnu packages xiph)) (define-public dragon (package @@ -128,3 +135,63 @@ Some of JuK's features include: This package is part of the KDE multimedia module.") (license license:gpl2+))) + +(define-public k3b + (package + (name "k3b") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/k3b-" version ".tar.xz")) + (sha256 + (base32 "08rbiy1hz650srdksr7ciq8dpcz20wczs22613pghrpgm5zsczhr")))) + (properties `((tags . ("Desktop" "KDE" "Multimedia")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("pkg-config" ,pkg-config) + ("kdoctools" ,kdoctools))) + (inputs + `(("ffmpeg" ,ffmpeg) + ("flac" ,flac) + ("karchive" ,karchive) + ("kcmutils" ,kcmutils) + ("kconfig" ,kconfig) + ("kcoreaddons" ,kcoreaddons) + ("kfilemetadata" ,kfilemetadata) + ("ki18n" ,ki18n) + ("kiconthemes" ,kiconthemes) + ("kio" ,kio) + ("kjobwidgets" ,kjobwidgets) + ("knewstuff" ,knewstuff) + ("knotifications" ,knotifications) + ("knotifyconfig" ,knotifyconfig) + ("kservice" ,kservice) + ("kwidgetsaddons" ,kwidgetsaddons) + ("kxmlgui" ,kxmlgui) + ("lame" ,lame) + ("libdvdread" ,libdvdread) + ;; TODO: LibFuzzer + ("libiconv" ,libiconv) + ("libkcddb" ,libkcddb) + ("libmad" ,libmad) + ("libmpcdec" ,libmpcdec) ;; FIXME: why does cmake not find this? + ;;("libmusicbrainz" ,libmusicbrainz) ; wants old version 2 + ("libsamplerate" ,libsamplerate) + ("libsndfile" ,libsndfile) + ("libvorbis" ,libvorbis) + ("oxygen-icons" ,oxygen-icons) ; default icon set + ("qtbase" ,qtbase) + ("qtwebkit" ,qtwebkit) + ("shared-mime-info" ,shared-mime-info) + ("solid" ,solid) + ("taglib" ,taglib))) + (home-page "https://kde.org/applications/multimedia/org.kde.k3b") + (synopsis "Sophisticated CD/DVD burning application") + (description "K3b is CD-writing software which intends to be feature-rich +and provide an easily usable interface. Features include burning audio CDs +from .WAV and .MP3 audio files, configuring external programs and configuring +devices.") + (license (list license:gpl2+ license:fdl1.2+)))) -- 2.21.0