[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
338/377: gnu: ibus: Enable documentation.
From: |
guix-commits |
Subject: |
338/377: gnu: ibus: Enable documentation. |
Date: |
Thu, 2 Sep 2021 17:56:15 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit a784c0d890df7e94b60a81103f1fc92545305e36
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Wed Apr 7 16:42:23 2021 -0400
gnu: ibus: Enable documentation.
* gnu/packages/ibus.scm (ibus)[outputs](doc): New output.
[configure-flags](enable-gtk-doc): New flag.
[phases](patch-docbook-xml): New phase.
(move-doc): New phase.
[native-inputs]: Add docbook-xml and gtk-doc.
---
gnu/packages/ibus.scm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ibus.scm b/gnu/packages/ibus.scm
index 88df5ac..0175acd 100644
--- a/gnu/packages/ibus.scm
+++ b/gnu/packages/ibus.scm
@@ -42,6 +42,7 @@
#:use-module (gnu packages databases)
#:use-module (gnu packages datastructures)
#:use-module (gnu packages dbm)
+ #:use-module (gnu packages docbook)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
@@ -73,10 +74,12 @@
(base32
"07s2ly75xv50bqg37mn37i9akqvcfd45k2mbplxrsqk3a2b3mwxb"))))
(build-system glib-or-gtk-build-system)
+ (outputs '("out" "doc"))
(arguments
`(#:tests? #f ; tests fail because there's no connection to dbus
#:parallel-build? #f ; race condition discovered with emoji support
#:configure-flags (list "--enable-python-library"
+ "--enable-gtk-doc"
(string-append
"--with-unicode-emoji-dir="
(assoc-ref %build-inputs "unicode-emoji")
@@ -91,6 +94,14 @@
"--enable-wayland")
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs/reference/ibus"
+ (substitute* "ibus-docs.sgml.in"
+ (("http://www.oasis-open.org/docbook/xml/4.1.2/")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/"))))
+ #t))
(add-after 'unpack 'patch-python-target-directories
(lambda* (#:key outputs #:allow-other-keys)
(let ((root (string-append (assoc-ref outputs "out")
@@ -127,6 +138,15 @@
(("\"(setxkbmap|xmodmap)\"" _ prog)
(string-append "\"" (assoc-ref inputs prog) "/bin/" prog
"\"")))
#t))
+ (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/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t)))
(add-after 'wrap-program 'wrap-with-additional-paths
(lambda* (#:key outputs #:allow-other-keys)
;; Make sure 'ibus-setup' runs with the correct PYTHONPATH and
@@ -160,10 +180,12 @@
("wayland" ,wayland)
("xmodmap" ,xmodmap)))
(native-inputs
- `(("glib" ,glib "bin") ; for glib-genmarshal
+ `(("docbook-xml" ,docbook-xml-4.1.2)
+ ("glib" ,glib "bin") ; for glib-genmarshal
("gettext" ,gettext-minimal)
("gnome-common" ,gnome-common)
("gobject-introspection" ,gobject-introspection) ; for g-ir-compiler
+ ("gtk-doc" ,gtk-doc)
("perl" ,perl)
("pkg-config" ,pkg-config)
("python-wrapper" ,python-wrapper)
- 334/377: gnu: gtk+: Update to 3.24.27., (continued)
- 334/377: gnu: gtk+: Update to 3.24.27., guix-commits, 2021/09/02
- 337/377: gnu: ibus: Update to 1.5.24., guix-commits, 2021/09/02
- 340/377: gnu: ibus: Enable tests., guix-commits, 2021/09/02
- 342/377: gnu: iqa: Correct source uri., guix-commits, 2021/09/02
- 354/377: gnu: cairo: Reintroduce security patches [security fixes]., guix-commits, 2021/09/02
- 364/377: gnu: python-pycairo: Update to 1.20.0., guix-commits, 2021/09/02
- 103/377: gnu: Add r-ztpln., guix-commits, 2021/09/02
- 112/377: gnu: Add r-paws-application-integration., guix-commits, 2021/09/02
- 119/377: gnu: Add r-paws-storage., guix-commits, 2021/09/02
- 130/377: gnu: Add r-zonebuilder., guix-commits, 2021/09/02
- 338/377: gnu: ibus: Enable documentation.,
guix-commits <=
- 356/377: gnu: meson-0.55: Update to 0.55.3., guix-commits, 2021/09/02
- 360/377: gnu: glib-networking: Enable libproxy and openssl support., guix-commits, 2021/09/02
- 361/377: gnu: glib-networking: Update home-page, synopsis, description and license., guix-commits, 2021/09/02
- 365/377: gnu: python-pygobject: Update to 3.40.1., guix-commits, 2021/09/02
- 372/377: gnu: tracker: Update to 3.1.1 and make related changes., guix-commits, 2021/09/02
- 373/377: gnu: tracker: Propagate dependencies as per pkg-config file., guix-commits, 2021/09/02
- 374/377: gnu: tracker-miners: Update to 3.1.1 and make related changes., guix-commits, 2021/09/02
- 375/377: gnu: tracker-miners: Enable some features., guix-commits, 2021/09/02
- 377/377: gnu: glib-networking: Disable openssl support., guix-commits, 2021/09/02
- 366/377: gnu: gtkmm: Change build-system and adjust arguments accordingly., guix-commits, 2021/09/02