[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
38/115: gnu: gdk-pixbuf: Fix documentation.
From: |
guix-commits |
Subject: |
38/115: gnu: gdk-pixbuf: Fix documentation. |
Date: |
Fri, 7 May 2021 16:56:31 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit bfe2ae33bee285b472ddf2eac05bedc718776366
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Thu Mar 11 10:50:46 2021 -0500
gnu: gdk-pixbuf: Fix documentation.
* gnu/packages/gtk.scm (gdk-pixbuf) [arguments]<#:phases>['patch-docbook]:
New phase.
[native-inputs]: Add docbook-xml and docbook-xsl.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/gtk.scm | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 77a6849..2737c60 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -593,10 +593,22 @@ highlighting and other features typical of a source code
editor.")
(build-system meson-build-system)
(arguments
`(#:meson ,meson-0.55
- #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
#:configure-flags '("-Dinstalled_tests=false" "-Djasper=true")
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs"
+ (substitute* "meson.build"
+ (("http://docbook.sourceforge.net/release/xsl/current/")
+ (string-append (assoc-ref inputs "docbook-xsl")
+ "/xml/xsl/docbook-xsl-1.79.2/")))
+ (substitute* (find-files "." "\\.xml$")
+ (("http://www.oasis-open.org/docbook/xml/4\\.3/")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/"))))
+ #t))
;; The slow tests take longer than the specified timeout.
,@(if (any (cute string=? <> (%current-system))
'("armhf-linux" "aarch64-linux"))
@@ -617,10 +629,12 @@ highlighting and other features typical of a source code
editor.")
("libpng" ,libpng)
("libtiff" ,libtiff)))
(native-inputs
- `(("pkg-config" ,pkg-config)
+ `(("docbook-xml" ,docbook-xml-4.3)
+ ("docbook-xsl" ,docbook-xsl)
("gettext" ,gettext-minimal)
("glib" ,glib "bin") ; glib-mkenums, etc.
- ("gobject-introspection" ,gobject-introspection))) ; g-ir-compiler, etc.
+ ("gobject-introspection" ,gobject-introspection) ; g-ir-compiler, etc.
+ ("pkg-config" ,pkg-config)))
(synopsis "GNOME image loading and manipulation library")
(description
"GdkPixbuf is a library for image loading and manipulation developed
- 04/115: gnu: glib: Update synopsis, description and home-page., (continued)
- 04/115: gnu: glib: Update synopsis, description and home-page., guix-commits, 2021/05/07
- 03/115: gnu: glib: Enable man pages., guix-commits, 2021/05/07
- 01/115: gnu: glib: Make some cosmetic changes., guix-commits, 2021/05/07
- 09/115: gnu: libsigc++: Enable documentation., guix-commits, 2021/05/07
- 10/115: gnu: glibmm: Update to 2.68.0., guix-commits, 2021/05/07
- 11/115: gnu: glibmm: Enable documentation., guix-commits, 2021/05/07
- 20/115: gnu: cairo: Make some cosmetic changes., guix-commits, 2021/05/07
- 18/115: gnu: gtk-doc: Update synopsis, description, home-page and license., guix-commits, 2021/05/07
- 42/115: gnu: gdk-pixbuf+svg: Correct package definition to include changes from gdk-pixbuf., guix-commits, 2021/05/07
- 27/115: gnu: cairomm-1.13: Fix build., guix-commits, 2021/05/07
- 38/115: gnu: gdk-pixbuf: Fix documentation.,
guix-commits <=
- 39/115: gnu: gdk-pixbuf: Update to 2.42.4., guix-commits, 2021/05/07
- 56/115: gnu: atk: Update to 2.36.0., guix-commits, 2021/05/07
- 51/115: gnu: libgsf: Enable missing features., guix-commits, 2021/05/07
- 06/115: gnu: glib-with-documentation: Fix documentation build., guix-commits, 2021/05/07
- 07/115: gnu: Temporarily use glib without documentation., guix-commits, 2021/05/07
- 16/115: gnu: gtk-doc: Update to 1.32., guix-commits, 2021/05/07
- 15/115: gnu: gtk-doc: Correct inputs., guix-commits, 2021/05/07
- 14/115: gnu: gtk-doc: Change build-system., guix-commits, 2021/05/07
- 23/115: gnu: cairo: Enable some features., guix-commits, 2021/05/07
- 24/115: gnu: cairo: Update synopsis, description and license., guix-commits, 2021/05/07