[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
68/115: gnu: json-glib: Enable documentation and man-pages.
From: |
guix-commits |
Subject: |
68/115: gnu: json-glib: Enable documentation and man-pages. |
Date: |
Wed, 12 May 2021 21:01:38 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit e8eadbac00bb14d8167c758b3d5be22b708a33fe
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 ae95bad..1f90adf 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4686,13 +4686,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")
- 50/115: gnu: libgsf: Re-arrange inputs in alphabetical order., (continued)
- 50/115: gnu: libgsf: Re-arrange inputs in alphabetical order., guix-commits, 2021/05/12
- 55/115: gnu: atk: Re-arrange inputs in alphabetical order., guix-commits, 2021/05/12
- 52/115: gnu: libgsf: Correct inputs., guix-commits, 2021/05/12
- 56/115: gnu: atk: Update to 2.36.0., guix-commits, 2021/05/12
- 53/115: gnu: libgsf: Enable documentation., guix-commits, 2021/05/12
- 63/115: gnu: at-spi2-core: Fix documentation., guix-commits, 2021/05/12
- 66/115: gnu: at-spi2-atk: Update home-page and license., guix-commits, 2021/05/12
- 67/115: gnu: json-glib: Update to 1.6.2., guix-commits, 2021/05/12
- 62/115: gnu: at-spi2-core: Update to 2.40.0., guix-commits, 2021/05/12
- 58/115: gnu: atkmm: Update to 2.36.0., guix-commits, 2021/05/12
- 68/115: gnu: json-glib: Enable documentation and man-pages.,
guix-commits <=
- 69/115: gnu: json-glib: Update synopsis and description., guix-commits, 2021/05/12
- 84/115: gnu: ibus: Update to 1.5.24., guix-commits, 2021/05/12
- 92/115: gnu: gstreamer: Update to 1.18.4., guix-commits, 2021/05/12
- 86/115: gnu: ibus: Enable memconf., guix-commits, 2021/05/12
- 88/115: gnu: ibus: Remove trailing #t in phases., guix-commits, 2021/05/12
- 82/115: gnu: gtkmm: Update to 3.24.4., guix-commits, 2021/05/12
- 89/115: gnu: iqa: Correct source uri., guix-commits, 2021/05/12
- 81/115: gnu: gtk+: Update to 3.24.27., guix-commits, 2021/05/12
- 95/115: gnu: gst-plugins-good: Update to 1.18.4., guix-commits, 2021/05/12
- 90/115: gnu: faac: Correct source uri., guix-commits, 2021/05/12