[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
59/115: gnu: atkmm: Enable documentation.
From: |
guix-commits |
Subject: |
59/115: gnu: atkmm: Enable documentation. |
Date: |
Wed, 12 May 2021 21:01:34 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 45936caddb839e3c0580f7774935c4e667b5f24b
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Wed Mar 24 22:46:44 2021 -0400
gnu: atkmm: Enable documentation.
* gnu/packages/gtk.scm (atkmm) [outputs]: Add new output "doc".
[arguments]<#:configure-flags>[-Denable-documentation]: New flag.
[arguments]<#:phases>['move-doc]: New phase.
[native-inputs]: Add graphviz, doxygen.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/gtk.scm | 22 ++++++++++++++++++++--
1 file changed, 20 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index a5a660b..abb2bdf 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -76,6 +76,7 @@
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
+ #:use-module (gnu packages graphviz)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages image)
#:use-module (gnu packages libffi)
@@ -1441,10 +1442,27 @@ library.")
(base32
"0wwr0663jrqx2klsasffd9wpk3kqnwisj1y3ahdkjdk5hzrsjgy9"))))
(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
+ "-Dbuild-documentation=true")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-doc
+ (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/doc")
+ (string-append doc "/share/doc"))
+ #t))))))
(native-inputs
- `(("m4" ,m4)
+ `(("dot" ,graphviz)
+ ("doxygen" ,doxygen)
+ ("m4" ,m4)
("mm-common" ,mm-common)
("perl" ,perl)
("pkg-config" ,pkg-config)
- 41/115: gnu: gdk-pixbuf: Disable failing tests., (continued)
- 41/115: gnu: gdk-pixbuf: Disable failing tests., guix-commits, 2021/05/12
- 40/115: gnu: gdk-pixbuf: Update synopsis, description, home-page and license., guix-commits, 2021/05/12
- 47/115: gnu: vala: Update synopsis and description., guix-commits, 2021/05/12
- 51/115: gnu: libgsf: Enable missing features., guix-commits, 2021/05/12
- 54/115: gnu: libgsf: Update synopsis, description, home-page and license., guix-commits, 2021/05/12
- 57/115: gnu: atk: Update home-page and license., guix-commits, 2021/05/12
- 70/115: gnu: wayland: Update to 1.19.0., guix-commits, 2021/05/12
- 64/115: gnu: at-spi2-core: Update home-page and license., guix-commits, 2021/05/12
- 61/115: gnu: Add atkmm-2.28., guix-commits, 2021/05/12
- 71/115: gnu: wayland: Fix and move documentation., guix-commits, 2021/05/12
- 59/115: gnu: atkmm: Enable documentation.,
guix-commits <=
- 65/115: gnu: at-spi2-atk: Update to 2.38.0., guix-commits, 2021/05/12
- 60/115: gnu: atkmm: Update synopsis, description, home-page and license., guix-commits, 2021/05/12
- 74/115: gnu: yelp-xsl: Enable documentation., guix-commits, 2021/05/12
- 79/115: gnu: gtk+: Add missing inputs., guix-commits, 2021/05/12
- 97/115: gnu: gst-libav: Update to 1.18.4., guix-commits, 2021/05/12
- 77/115: gnu: gtk+-2: Update to 2.24.33., guix-commits, 2021/05/12
- 83/115: gnu: gtkmm-2: Fix build., guix-commits, 2021/05/12
- 72/115: gnu: wayland: Update synopsis, description and license., guix-commits, 2021/05/12
- 73/115: gnu: wayland-protocols: Update description., guix-commits, 2021/05/12
- 85/115: gnu: ibus: Enable documentation., guix-commits, 2021/05/12