[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/115: gnu: glib-with-documentation: Fix documentation build.
From: |
guix-commits |
Subject: |
06/115: gnu: glib-with-documentation: Fix documentation build. |
Date: |
Wed, 12 May 2021 21:01:15 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 5ec9417df2c843689176911e396b4369ff6afebf
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Thu Mar 11 09:39:52 2021 -0500
gnu: glib-with-documentation: Fix documentation build.
* gnu/packages/glib.scm (glib-with-documentation) [native-inputs]:
Add docbook-4.2. Remove libxml2.
[arguments]<#:phases>['patch-docbook-xml]: New phase.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/glib.scm | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index c32e643..76df9e7 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -320,7 +320,8 @@ functions for strings and common data structures.")
(properties (alist-delete 'hidden? (package-properties glib)))
(outputs (cons "doc" (package-outputs glib))) ; 20 MiB of GTK-Doc reference
(native-inputs
- `(("docbook-xml" ,docbook-xml)
+ `(("docbook-xml-4.2" ,docbook-xml-4.2)
+ ("docbook-xml-4.5" ,docbook-xml)
("gtk-doc" ,gtk-doc) ; for the doc
("libxml2" ,libxml2)
,@(package-native-inputs glib)))
@@ -330,6 +331,17 @@ functions for strings and common data structures.")
`(cons "-Dgtk_doc=true" ,flags))
((#:phases phases)
`(modify-phases ,phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs"
+ (substitute* (find-files "." "\\.xml$")
+ (("http://www.oasis-open.org/docbook/xml/4\\.5/")
+ (string-append (assoc-ref inputs "docbook-xml-4.5")
+ "/xml/dtd/docbook/"))
+ (("http://www.oasis-open.org/docbook/xml/4\\.2/")
+ (string-append (assoc-ref inputs "docbook-xml-4.2")
+ "/xml/dtd/docbook/"))))
+ #t))
(add-after 'install 'move-doc
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
- branch wip-gnome created (now 901ddf2), guix-commits, 2021/05/12
- 02/115: gnu: glib: Update to 2.68.0., guix-commits, 2021/05/12
- 07/115: gnu: Temporarily use glib without documentation., guix-commits, 2021/05/12
- 11/115: gnu: glibmm: Enable documentation., guix-commits, 2021/05/12
- 01/115: gnu: glib: Make some cosmetic changes., guix-commits, 2021/05/12
- 03/115: gnu: glib: Enable man pages., guix-commits, 2021/05/12
- 04/115: gnu: glib: Update synopsis, description and home-page., guix-commits, 2021/05/12
- 05/115: gnu: glib-with-documentation: Make some cosmetic changes., guix-commits, 2021/05/12
- 06/115: gnu: glib-with-documentation: Fix documentation build.,
guix-commits <=
- 10/115: gnu: glibmm: Update to 2.68.0., guix-commits, 2021/05/12
- 09/115: gnu: libsigc++: Enable documentation., guix-commits, 2021/05/12
- 13/115: gnu: glibmm-2.64: Update to 2.64.5., guix-commits, 2021/05/12
- 14/115: gnu: gtk-doc: Change build-system., guix-commits, 2021/05/12
- 08/115: gnu: libsigc++: Update to 3.0.6., guix-commits, 2021/05/12
- 12/115: gnu: Add libsigc++-2., guix-commits, 2021/05/12
- 18/115: gnu: gtk-doc: Update synopsis, description, home-page and license., guix-commits, 2021/05/12
- 22/115: gnu: cairo: Move documentation to separate output., guix-commits, 2021/05/12
- 23/115: gnu: cairo: Enable some features., guix-commits, 2021/05/12
- 15/115: gnu: gtk-doc: Correct inputs., guix-commits, 2021/05/12