[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
68/126: gnu: json-glib: Enable documentation and man-pages.
From: |
guix-commits |
Subject: |
68/126: gnu: json-glib: Enable documentation and man-pages. |
Date: |
Mon, 6 Sep 2021 15:53:44 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 67e5257ad81d7fc06c00fdea0f0be50a690721e8
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Fri Mar 26 10:27:59 2021 -0400
gnu: json-glib: Enable documentation and man-pages.
* gnu/packages/gnome.scm (json-glib) [outputs]: New output "doc".
[arguments]<#:configure-flags>[-Ddocs]: New flag.
[-Dman]: New flag.
<#:phases>['patch-docbook]: New phase.
['move-doc]: New phase.
[native-inputs]: Add docbook-xml, docbook-xsl, gtk-doc and libxslt.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/gnome.scm | 38 +++++++++++++++++++++++++++++++++++---
1 file changed, 35 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index d472a59..1d71695 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4640,13 +4640,45 @@ configuration storage systems.")
(base32
"092g2dyy1hhl0ix9kp33wcab0pg1qicnsv0cj5ms9g9qs336cgd3"))))
(build-system meson-build-system)
+ (outputs '("out" "doc"))
(arguments
- `(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #:configure-flags
+ (list
+ "-Ddocs=true"
+ "-Dman=true")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "doc"
+ (substitute* (find-files "." "\\.xml$")
+ (("http://www.oasis-open.org/docbook/xml/4\\.3/")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/")))
+ (substitute* "meson.build"
+ (("http://docbook.sourceforge.net/release/xsl/current/")
+ (string-append (assoc-ref inputs "docbook-xsl")
+ "/xml/xsl/docbook-xsl-1.79.2/"))))
+ #t))
+ (add-after 'install 'move-docs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t))))))
(native-inputs
- `(("gettext" ,gettext-minimal)
+ `(("docbook-xml" ,docbook-xml-4.3)
+ ("docbook-xsl" ,docbook-xsl)
+ ("gettext" ,gettext-minimal)
("glib" ,glib "bin") ;for glib-mkenums and glib-genmarshal
("gobject-introspection" ,gobject-introspection)
- ("pkg-config" ,pkg-config)))
+ ("gtk-doc" ,gtk-doc)
+ ("pkg-config" ,pkg-config)
+ ("xsltproc" ,libxslt)))
(propagated-inputs
`(("glib" ,glib))) ;according to json-glib-1.0.pc
(home-page "https://wiki.gnome.org/Projects/JsonGlib")
- 81/126: gnu: gtk+: Update to 3.24.27., (continued)
- 81/126: gnu: gtk+: Update to 3.24.27., guix-commits, 2021/09/06
- 73/126: gnu: wayland-protocols: Update description., guix-commits, 2021/09/06
- 74/126: gnu: yelp-xsl: Enable documentation., guix-commits, 2021/09/06
- 75/126: gnu: gtk+-2: Enable tests., guix-commits, 2021/09/06
- 78/126: gnu: gtk+: Enable tests., guix-commits, 2021/09/06
- 85/126: gnu: ibus: Enable documentation., guix-commits, 2021/09/06
- 86/126: gnu: ibus: Enable memconf., guix-commits, 2021/09/06
- 87/126: gnu: ibus: Enable tests., guix-commits, 2021/09/06
- 88/126: gnu: ibus: Remove trailing #t in phases., guix-commits, 2021/09/06
- 93/126: gnu: gst-plugins-base: Update to 1.18.4., guix-commits, 2021/09/06
- 68/126: gnu: json-glib: Enable documentation and man-pages.,
guix-commits <=
- 76/126: gnu: gtk+-2: Add missing inputs and search-path., guix-commits, 2021/09/06
- 70/126: gnu: wayland: Update to 1.19.0., guix-commits, 2021/09/06
- 77/126: gnu: gtk+-2: Update to 2.24.33., guix-commits, 2021/09/06
- 82/126: gnu: gtkmm: Update to 3.24.4., guix-commits, 2021/09/06
- 83/126: gnu: gtkmm-2: Fix build., guix-commits, 2021/09/06
- 84/126: gnu: ibus: Update to 1.5.24., guix-commits, 2021/09/06
- 90/126: gnu: faac: Correct source uri., guix-commits, 2021/09/06
- 92/126: gnu: gstreamer: Update to 1.18.4., guix-commits, 2021/09/06
- 96/126: gnu: gst-plugins-ugly: Update to 1.18.4., guix-commits, 2021/09/06
- 94/126: gnu: gst-plugins-base: Enable more features., guix-commits, 2021/09/06