From 0422d3e1e58f5b8633d7923a2bc0dae89c0f40b8 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Mon, 23 Dec 2019 16:03:17 +0100 Subject: gnu: kdevelop: Use fixed qt-build-system. * gnu/packages/kde.scm (kdevelop)[arguments]: Use %standard-phases without explicitly referring to the qt-build-system module. --- gnu/packages/kde.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/kde.scm') diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 24d8eedd84..0e142fc4a2 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -222,7 +222,7 @@ projects.") (arguments `(#:tests? #f ;; there are some issues with the test suite #:phases - (modify-phases (@ (guix build qt-build-system) %standard-phases) + (modify-phases %standard-phases (add-before 'configure 'add-include-path (lambda* (#:key inputs #:allow-other-keys) (substitute* "cmake/modules/FindClang.cmake" -- cgit v1.2.3 From 46b7544e26d6ee08deacb5f6711bb2a53b985e3a Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Mon, 23 Dec 2019 16:02:07 +0100 Subject: gnu: kdeconnect: Use fixed qt-build-system. * gnu/packages/kde.scm (kdeconnect)[arguments]: Use %standard-phases without explicitly referring to the qt-build-system module. --- gnu/packages/kde.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/kde.scm') diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 0e142fc4a2..82116610ec 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -488,7 +488,7 @@ different notification systems.") `(#:configure-flags '("-DBUILD_TESTING=ON") #:tests? #f ; tests fail hard in our build environment #:phases - (modify-phases (@ (guix build qt-build-system) %standard-phases) + (modify-phases %standard-phases (add-before 'check 'check-setup (lambda _ (setenv "QT_QPA_PLATFORM" "offscreen") -- cgit v1.2.3 From b2fdd0cf4ade20b3d9bf0b249b32e06e9f8bf1b0 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 6 Dec 2019 09:56:48 +0100 Subject: gnu: Add grantleetheme. * gnu/packages/kde.scm (grantleetheme): New variable. * gnu/packages/patches/grantlee-merge-theme-dirs.patch: New file. * gnu:lokal.mk (DATA): Add it. --- gnu/packages/kde.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'gnu/packages/kde.scm') diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 82116610ec..31b917d033 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -64,8 +64,44 @@ #:use-module (gnu packages version-control) #:use-module (gnu packages video) #:use-module (gnu packages xdisorg) + #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) +(define-public grantleetheme + (package + (name "grantleetheme") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/grantleetheme-" version ".tar.xz")) + (sha256 + (base32 "0j77q1yyfmggzgkqgcw2xr0v9xg3h5cdhh8jry8h2llw75ahy6xb")) + (patches (search-patches "grantlee-merge-theme-dirs.patch")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("libxml2" ,libxml2))) ;; xmllint required for tests + (inputs + `(("grantlee" ,grantlee) + ("ki18n" ,ki18n) + ("kiconthemes" ,kiconthemes) + ("knewstuff" ,knewstuff) + ("qtbase" ,qtbase))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'check 'check-setup + (lambda _ + (setenv "QT_QPA_PLATFORM" "offscreen") + #t))))) + (home-page "https://cgit.kde.org/grantleetheme.git") + (synopsis "Library providing Grantlee theme support") + (description "This library provides Grantlee theme support.") + (license ;; LGPL for libraries, FDL for documentation + (list license:lgpl2.0+ license:fdl1.2+)))) + (define-public kdenlive (let ((version "18.08.1")) (package -- cgit v1.2.3 From 9b98d288c41cf9b3f305ca11f1961eab0b1605bf Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 6 Dec 2019 09:59:41 +0100 Subject: gnu: Add zeroconf-ioslave. * gnu/packages/kde.scm (zeroconf-ioslave): New variable. --- gnu/packages/kde.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu/packages/kde.scm') diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 31b917d033..44f8df387f 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -687,3 +687,31 @@ Python, PHP, and Perl.") (synopsis "Runtime library for kdegames") (description "Runtime library for kdegames") (license (list license:gpl2+ license:fdl1.2+)))) + +(define-public zeroconf-ioslave + (package + (name "zeroconf-ioslave") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/zeroconf-ioslave-" version ".tar.xz")) + (sha256 + (base32 "1vbi4kpyrk530q2dj8ql2i0gxjybdbmkqpl8vkhrihl7r7f0xc5p")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("kdbusaddons" ,kdbusaddons) + ("kdnssd" ,kdnssd) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("qtbase" ,qtbase))) + (home-page "https://kde.org/applications/internet/org.kde.zeroconf_ioslave") + (synopsis "DNS-SD Service Discovery Monitor") + (description "Adds an entry to Dolphin's Network page to show local +services such as printers which advertise themselves with DNSSD (called Avahi +or Bonjour by other projects).") + (license ;; GPL for programs, LGPL for libraries, FDL for documentation + (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) -- cgit v1.2.3