[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: python2-pygtk: Add "doc" output.
From: |
Ludovic Courtès |
Subject: |
04/05: gnu: python2-pygtk: Add "doc" output. |
Date: |
Fri, 18 Dec 2015 10:04:52 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 594e7b479a676dc74693b158522af93f5daa088f
Author: Ludovic Courtès <address@hidden>
Date: Fri Dec 18 11:01:33 2015 +0100
gnu: python2-pygtk: Add "doc" output.
* gnu/packages/gtk.scm (python2-pygtk)[outputs]: New field.
[arguments]: Add 'set-gtk-doc-directory' phase.
---
gnu/packages/gtk.scm | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index ccd9ad5..279c062 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -994,6 +994,8 @@ extensive documentation, including API reference and a
tutorial.")
(base32
"04k942gn8vl95kwf0qskkv6npclfm31d78ljkrkgyqxxcni1w76d"))))
(build-system gnu-build-system)
+ (outputs '("out"
+ "doc")) ;13 MiB of gtk-doc HTML
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs
@@ -1006,6 +1008,13 @@ extensive documentation, including API reference and a
tutorial.")
(arguments
`(#:tests? #f
#:phases (modify-phases %standard-phases
+ (add-before 'configure 'set-gtk-doc-directory
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Install documentation to "doc".
+ (let ((doc (assoc-ref outputs "doc")))
+ (substitute* "docs/Makefile.in"
+ (("TARGET_DIR = \\$\\(datadir\\)")
+ (string-append "TARGET_DIR = " doc))))))
(add-after 'configure 'fix-codegen
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "pygtk-codegen-2.0"