[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: gnu: gtk+: Enable wayland backend.
From: |
Marius Bakke |
Subject: |
05/12: gnu: gtk+: Enable wayland backend. |
Date: |
Sun, 14 May 2017 11:35:08 -0400 (EDT) |
mbakke pushed a commit to branch staging
in repository guix.
commit 982b35747854f7be35700572ec75e45881fa55e2
Author: Kei Kebreau <address@hidden>
Date: Wed May 10 08:23:30 2017 -0400
gnu: gtk+: Enable wayland backend.
* gnu/packages/gtk.scm (gtk+)[propagated-inputs]: Add libxkbcommon,
mesa, wayland and wayland-protocols.
[arguments]: Add "--enable-wayland-backend" and "--enable-x11-backend"
to #:configure-flags.
---
gnu/packages/gtk.scm | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 985056b..9732ee4 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -50,6 +50,7 @@
#:use-module (gnu packages docbook)
#:use-module (gnu packages enchant)
#:use-module (gnu packages fontutils)
+ #:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages gl)
@@ -673,8 +674,12 @@ application suites.")
("libxcursor" ,libxcursor)
("libxi" ,libxi)
("libxinerama" ,libxinerama)
+ ("libxkbcommon" ,libxkbcommon)
("libxdamage" ,libxdamage)
- ("pango" ,pango)))
+ ("mesa" ,mesa)
+ ("pango" ,pango)
+ ("wayland" ,wayland)
+ ("wayland-protocols" ,wayland-protocols)))
(inputs
`(("libxml2" ,libxml2)
;; XXX: colord depends on mozjs (through polkit), which fails on
@@ -700,7 +705,12 @@ application suites.")
;; to "doc".
#:configure-flags (list (string-append "--with-html-dir="
(assoc-ref %outputs "doc")
- "/share/gtk-doc/html"))
+ "/share/gtk-doc/html")
+ ;; The header file <gdk/gdkwayland.h> is required
+ ;; by gnome-control-center
+ "--enable-wayland-backend"
+ ;; This is necessary to build both backends.
+ "--enable-x11-backend")
#:phases (modify-phases %standard-phases
(add-before 'configure 'pre-configure
(lambda _
- branch staging updated (3590a6b -> 86c44e7), Marius Bakke, 2017/05/14
- 01/12: Merge commit '28ee4d41edf072776777ff3f83aef8502df909e5' into staging, Marius Bakke, 2017/05/14
- 03/12: gnu: json-glib: Update to 1.2.8., Marius Bakke, 2017/05/14
- 07/12: gnu: gnome-desktop: Update to 3.24.1., Marius Bakke, 2017/05/14
- 04/12: gnu: epiphany: Update to 3.24.1., Marius Bakke, 2017/05/14
- 08/12: gnu: gnome-bluetooth: Update to 3.20.1., Marius Bakke, 2017/05/14
- 06/12: gnu: cogl: Enable wayland support., Marius Bakke, 2017/05/14
- 05/12: gnu: gtk+: Enable wayland backend.,
Marius Bakke <=
- 10/12: gnu: gnome-control-center: Update to 3.24.1., Marius Bakke, 2017/05/14
- 02/12: Merge branch 'master' into staging, Marius Bakke, 2017/05/14
- 12/12: gnu: mutter: Update to 3.24.1., Marius Bakke, 2017/05/14
- 09/12: gnu: gnome-online-accounts: Update to 3.24.0., Marius Bakke, 2017/05/14
- 11/12: gnu: gnome-session: Update to 3.24.1., Marius Bakke, 2017/05/14