[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/124: gnu: cairo: Enable some features.
From: |
guix-commits |
Subject: |
23/124: gnu: cairo: Enable some features. |
Date: |
Sun, 5 Sep 2021 10:41:58 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 8c589dc4e3f016997a496123cdcabd3f73d7b05e
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Dec 4 01:02:00 2020 -0500
gnu: cairo: Enable some features.
* gnu/packages/gtk.scm (cairo) [native-inputs]: Add gobject-introspection.
[inputs]: Add libdrm. Remove xorgproto and zlib.
[propagated-inputs]: Add libxcb.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/gtk.scm | 39 +++++++++++++++++++++++++++------------
1 file changed, 27 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index a056124..8a6044e 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -142,30 +142,45 @@ tools have full access to view and control running
applications.")
`(#:tests? #f ; see
http://lists.gnu.org/archive/html/bug-guix/2013-06/msg00085.html
#:configure-flags
(list
- "--enable-tee" ;needed for GNU Icecat
- "--enable-xml" ;for cairo-xml support
"--disable-static"
+ ;; XXX: To be enabled.
+ ;; "--enable-gallium=yes"
+ ;; "--enable-gl=yes"
+ ;; " --enable-glesv2=yes"
+ ;; "--enable-glesv3=yes"
+ ;; "--enable-cogl=yes"
+ ;; "--enable-directfb=yes"
+ ;; "--enable-vg=yes"
+ "--enable-tee=yes"
+ "--enable-xml=yes"
(string-append "--with-html-dir="
(assoc-ref %outputs "doc")
"/share/gtk-doc/html"))))
(native-inputs
- `(("pkg-config" ,pkg-config)
+ `(("gobject-introspection" ,gobject-introspection)
+ ("pkg-config" ,pkg-config)
("python" ,python-wrapper)))
(inputs
- `(("ghostscript" ,ghostscript)
+ `(("drm" ,libdrm)
+ ("ghostscript" ,ghostscript)
("libspectre" ,libspectre)
- ("poppler" ,poppler)
- ("xorgproto" ,xorgproto)
- ("zlib" ,zlib)))
+ ("poppler" ,poppler)))
(propagated-inputs
- `(("fontconfig" ,fontconfig)
+ `( ;; ("cogl" ,cogl)
+ ;; ("directfb" ,directfb)
+ ("fontconfig" ,fontconfig)
+ ("fontconfig" ,fontconfig)
("freetype" ,freetype)
("glib" ,glib)
+ ;; ("gtk+" ,gtk+)
("libpng" ,libpng)
- ("libx11" ,libx11)
- ("libxext" ,libxext)
- ("libxrender" ,libxrender)
- ("pixman" ,pixman)))
+ ;; ("librsvg" ,librsvg)
+ ;; ("opengl" ,mesa)
+ ("pixman" ,pixman)
+ ("x11" ,libx11)
+ ("xcb" ,libxcb)
+ ("xext" ,libxext)
+ ("xrender" ,libxrender)))
(synopsis "2D graphics library")
(description "Cairo is a 2D graphics library with support for multiple
output
devices. Currently supported output targets include the X Window System (via
- 14/124: gnu: gtk-doc: Change build-system., (continued)
- 14/124: gnu: gtk-doc: Change build-system., guix-commits, 2021/09/05
- 15/124: gnu: gtk-doc: Correct inputs., guix-commits, 2021/09/05
- 16/124: gnu: gtk-doc: Update to 1.32., guix-commits, 2021/09/05
- 20/124: gnu: cairo: Make some cosmetic changes., guix-commits, 2021/09/05
- 21/124: gnu: cairo: Change build-system., guix-commits, 2021/09/05
- 22/124: gnu: cairo: Move documentation to separate output., guix-commits, 2021/09/05
- 09/124: gnu: libsigc++: Enable documentation., guix-commits, 2021/09/05
- 17/124: gnu: gtk-doc: Enable help., guix-commits, 2021/09/05
- 18/124: gnu: gtk-doc: Update synopsis, description, home-page and license., guix-commits, 2021/09/05
- 19/124: gnu: gobject-introspection: Propagate glib., guix-commits, 2021/09/05
- 23/124: gnu: cairo: Enable some features.,
guix-commits <=
- 24/124: gnu: cairo: Update synopsis, description and license., guix-commits, 2021/09/05
- 25/124: gnu: cairomm: Update to 1.16.0., guix-commits, 2021/09/05
- 30/124: gnu: pango: Update to 1.48.3., guix-commits, 2021/09/05
- 35/124: gnu: gdk-pixbuf: Add missing arguments., guix-commits, 2021/09/05
- 36/124: gnu: gdk-pixbuf: Correct inputs., guix-commits, 2021/09/05
- 37/124: gnu: gdk-pixbuf: Enable jasper support., guix-commits, 2021/09/05
- 26/124: gnu: cairomm: Enable documentation., guix-commits, 2021/09/05
- 31/124: gnu: pango: Update synopsis, description and home-page., guix-commits, 2021/09/05
- 32/124: gnu: pangomm: Update to 2.48.0., guix-commits, 2021/09/05
- 34/124: gnu: pangomm-2.42: Update to 2.42.2., guix-commits, 2021/09/05