all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: 26463@debbugs.gnu.org
Subject: bug#26463: [PATCH 1/7] gnu: Add KDE frameworkintegration.
Date: Wed, 12 Apr 2017 12:58:22 +0200	[thread overview]
Message-ID: <1491994708-20211-1-git-send-email-h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <1491994573-20134-1-git-send-email-h.goebel@crazy-compilers.com>

* gnu/packages/kde-frameworks.scm (frameworkintegration): New variable.
---
 gnu/packages/kde-frameworks.scm | 56 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 78654a1..e4614fc 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2951,3 +2951,59 @@ script engines.")
 
 (define kinit-bootstrap
   ((package-input-rewriting `((,kdbusaddons . ,kdbusaddons-bootstrap))) kinit))
+
+;; Tier 4
+;;
+;; Tier 4 frameworks can be mostly ignored by application programmers; this
+;; tier consists of plugins acting behind the scenes to provide additional
+;; functionality or platform integration to existing frameworks (including
+;; Qt).
+
+(define-public kde-frameworkintegration
+  (package
+    (name "kde-frameworkintegration")
+    (version "5.32.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    "frameworkintegration-" version ".tar.xz"))
+              (sha256
+               (base32
+                "022scc4pgl68973wq29l1kc9j9lspvlmpr3bc6zlyg57m8agapwa"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("pkg-config" ,pkg-config)))
+    ;; Optional packages not yet in Guix: packagekitqt5, AppStreamQt
+    (inputs
+     `(("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kitemviews" ,kitemviews)
+       ("knewstuff" ,knewstuff)
+       ("knotificantions" ,knotifications)
+       ("kpackage" ,kpackage)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("qtbase" ,qtbase)
+       ("qtx11extras" ,qtx11extras)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "HOME" (getcwd))
+             ;; Make Qt render "offscreen", required for tests
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
+    (home-page "https://community.kde.org/Frameworks")
+    (synopsis "KDE Frameworks 5 workspace and cross-framework integration plugins")
+    (description "Framework Integration is a set of plugins responsible for
+better integration of Qt applications when running on a KDE Plasma
+workspace.")
+    ;; This package is distributed under either LGPL2 or LGPL3, but some
+    ;; files are explicitly LGPL2+.
+    (license '(lgpl2.0 lgpl3.0 lgpl2.0+))))
-- 
2.7.4

  reply	other threads:[~2017-04-12 10:59 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-12 10:56 bug#26463: [PATCH 0/7] Add KDE Frameworks Tier 4 Hartmut Goebel
2017-04-12 10:58 ` Hartmut Goebel [this message]
2017-04-12 10:58   ` bug#26463: [PATCH 2/7] gnu: Add kdelibs4support Hartmut Goebel
2017-04-12 16:06     ` Leo Famulari
2017-04-18 15:54       ` Hartmut Goebel
2017-04-12 10:58   ` bug#26463: [PATCH 3/7] gnu: Add kjs Hartmut Goebel
2017-04-12 16:07     ` Leo Famulari
2017-04-12 10:58   ` bug#26463: [PATCH 4/7] gnu: Add khtml Hartmut Goebel
2017-04-12 16:10     ` Leo Famulari
2017-04-12 10:58   ` bug#26463: [PATCH 5/7] gnu: Add kjsembed Hartmut Goebel
2017-04-12 16:10     ` Leo Famulari
2017-04-12 10:58   ` bug#26463: [PATCH 6/7] gnu: Add kmediaplayer Hartmut Goebel
2017-04-12 16:11     ` Leo Famulari
2017-04-12 10:58   ` bug#26463: [PATCH 7/7] gnu: Add kross Hartmut Goebel
2017-04-12 16:11     ` Leo Famulari
2017-04-12 16:05   ` bug#26463: [PATCH 1/7] gnu: Add KDE frameworkintegration Leo Famulari
2017-06-11 15:34 ` bug#26463: [PATCH v2 0/7] Add KDE Frameworks Tier 4 Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 1/7] gnu: Add kde-frameworkintegration Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 2/7] gnu: Add kdelibs4support Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 3/7] gnu: Add kjs Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 4/7] gnu: Add khtml Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 5/7] gnu: Add kjsembed Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 6/7] gnu: Add kmediaplayer Hartmut Goebel
2017-06-11 15:34   ` bug#26463: [PATCH v2 7/7] gnu: Add kross Hartmut Goebel
2017-06-24 18:44   ` [bug#26463] [PATCH v2 0/7] Add KDE Frameworks Tier 4 Leo Famulari
2017-06-26  9:01     ` bug#26463: " Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1491994708-20211-1-git-send-email-h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=26463@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.