[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
33/124: gnu: pangomm: Enable documentation.
From: |
guix-commits |
Subject: |
33/124: gnu: pangomm: Enable documentation. |
Date: |
Sun, 5 Sep 2021 10:42:01 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 6e6201b7d2d453728de9f0eb4f79e2a626c24560
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Thu Mar 25 07:47:41 2021 -0400
gnu: pangomm: Enable documentation.
* gnu/packages/gtk.scm (pangomm)[outputs]: New output "doc".
[arguments]<#:configure-flags>[-Dbuild-documentation]: New flag.
<#:phases>['move-doc]: New phase.
[native-inputs]: Add doxygen, graphviz, perl and libxslt.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/gtk.scm | 25 ++++++++++++++++++++++---
1 file changed, 22 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 837f799..26e1ff9 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1361,12 +1361,31 @@ library.")
(base32
"0y2vyp6azvhrii6rzs89kr08wg8z1p562awyr812131zqdsd83ly"))))
(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)
- ("pkg-config" ,pkg-config)))
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("xsltproc" ,libxslt)))
(propagated-inputs
`(("cairo" ,cairo)
("cairomm" ,cairomm)
- 26/124: gnu: cairomm: Enable documentation., (continued)
- 26/124: gnu: cairomm: Enable documentation., guix-commits, 2021/09/05
- 31/124: gnu: pango: Update synopsis, description and home-page., guix-commits, 2021/09/05
- 32/124: gnu: pangomm: Update to 2.48.0., guix-commits, 2021/09/05
- 34/124: gnu: pangomm-2.42: Update to 2.42.2., guix-commits, 2021/09/05
- 38/124: gnu: gdk-pixbuf: Fix documentation., guix-commits, 2021/09/05
- 28/124: gnu: pango: Add missing arguments., guix-commits, 2021/09/05
- 39/124: gnu: gdk-pixbuf: Update to 2.42.4., guix-commits, 2021/09/05
- 43/124: gnu: vala: Change build-system., guix-commits, 2021/09/05
- 41/124: gnu: gdk-pixbuf: Disable failing tests., guix-commits, 2021/09/05
- 29/124: gnu: pango: Re-arrange inputs in alphabetical order., guix-commits, 2021/09/05
- 33/124: gnu: pangomm: Enable documentation.,
guix-commits <=
- 42/124: gnu: gdk-pixbuf+svg: Correct package definition to include changes from gdk-pixbuf., guix-commits, 2021/09/05
- 47/124: gnu: vala: Update synopsis and description., guix-commits, 2021/09/05
- 27/124: gnu: cairomm-1.13: Fix build., guix-commits, 2021/09/05
- 40/124: gnu: gdk-pixbuf: Update synopsis, description, home-page and license., guix-commits, 2021/09/05
- 44/124: gnu: vala: Enable coverage support., guix-commits, 2021/09/05
- 45/124: gnu: vala: Fix documentation., guix-commits, 2021/09/05
- 46/124: gnu: vala: Update to 0.52.0., guix-commits, 2021/09/05
- 48/124: gnu: libgsf: Change build-system., guix-commits, 2021/09/05
- 49/124: gnu: libgsf: Make separate output for binaries., guix-commits, 2021/09/05
- 50/124: gnu: libgsf: Re-arrange inputs in alphabetical order., guix-commits, 2021/09/05