From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: bug#38450: [PATCH] gnu: kdenlive: Use qt-build-system. Date: Sun, 1 Dec 2019 16:13:51 -0500 Message-ID: <35ce830ca1a6a4efe55bfc30ec717c344450f450.1575234831.git.leo@famulari.name> References: <20191201211006.GA1786@jasmine.lan> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:52773) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibWYZ-00035O-He for bug-guix@gnu.org; Sun, 01 Dec 2019 16:15:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibWYY-0005F0-Be for bug-guix@gnu.org; Sun, 01 Dec 2019 16:15:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:59062) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ibWYY-0005Dx-4e for bug-guix@gnu.org; Sun, 01 Dec 2019 16:15:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ibWYX-0007yP-TS for bug-guix@gnu.org; Sun, 01 Dec 2019 16:15:01 -0500 In-Reply-To: <20191201211006.GA1786@jasmine.lan> Sender: "Debbugs-submit" Resent-Message-ID: List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 38450@debbugs.gnu.org * gnu/packages/kde.scm (kdenlive)[build-system]: Use qt-build-system. [arguments]: Remove field. --- gnu/packages/kde.scm | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 014bca0738..fa3733d26f 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -73,7 +73,7 @@ (sha256 (base32 "0ifnaclsz7w08mc485i3j1kkcpd1m8q5qamckrfwc375ac13xf4g")))) - (build-system cmake-build-system) + (build-system qt-build-system) (native-inputs `(("extra-cmake-modules" ,extra-cmake-modules) ("qttools" ,qttools))) @@ -101,31 +101,6 @@ ("kiconthemes" ,kiconthemes) ("qtgraphicaleffects" ,qtgraphicaleffects) ("kplotting" ,kplotting))) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'install 'wrap-executable - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (qtquickcontrols (assoc-ref inputs "qtquickcontrols")) - (qtbase (assoc-ref inputs "qtbase")) - (qtdeclarative (assoc-ref inputs "qtdeclarative")) - (frei0r (assoc-ref inputs "frei0r-plugins")) - (qml "/lib/qt5/qml")) - (wrap-program (string-append out "/bin/kdenlive") - `("QT_PLUGIN_PATH" ":" prefix - ,(map (lambda (label) - (string-append (assoc-ref inputs label) - "/lib/qt5/plugins/")) - '("qtbase" "qtsvg"))) - `("FREI0R_PATH" ":" = - (,(string-append frei0r "/lib/frei0r-1/"))) - `("QT_QPA_PLATFORM_PLUGIN_PATH" ":" = - (,(string-append qtbase "/lib/qt5/plugins/platforms"))) - `("QML2_IMPORT_PATH" ":" prefix - (,(string-append qtquickcontrols qml) - ,(string-append qtdeclarative qml))))) - #t))))) (home-page "https://kdenlive.org") (synopsis "Non-linear video editor") (description "Kdenlive is an acronym for KDE Non-Linear Video Editor. -- 2.24.0