[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
118/124: gnu: tracker: Enable documentation.
From: |
guix-commits |
Subject: |
118/124: gnu: tracker: Enable documentation. |
Date: |
Tue, 17 Aug 2021 22:45:33 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit ffab3f1f732b85fe723d57374e35a3016528e05d
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Sat May 15 21:17:47 2021 -0400
gnu: tracker: Enable documentation.
* gnu/packages/gnome.scm (tracker)[outputs](doc): New output.
[configure-flags](docs): New flag.
[phases](patch-docbook-xml,move-doc): New phases.
[native-inputs]: Add docbook-xml, docbook-xsl and gtk-doc.
---
gnu/packages/gnome.scm | 41 +++++++++++++++++++++++++++++++++++------
1 file changed, 35 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a49b15c..ba1f05d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8735,23 +8735,52 @@ easy, safe, and automatic.")
(base32
"1ixxyqjlv7pnl4j8g6b72fkbjvzfspza8y71ppkncry8i6xkr223"))))
(build-system meson-build-system)
+ (outputs '("out" "doc"))
(arguments
`(#:glib-or-gtk? #t
#:configure-flags
- ;; Otherwise, the RUNPATH will lack the final path component.
- (list (string-append "-Dc_link_args=-Wl,-rpath="
- (assoc-ref %outputs "out") "/lib:"
- (assoc-ref %outputs "out") "/lib/tracker-2.0"))
+ (list
+ "-Ddocs=true"
+ ;; Otherwise, the RUNPATH will lack the final path component.
+ (string-append "-Dc_link_args=-Wl,-rpath="
+ (assoc-ref %outputs "out") "/lib:"
+ (assoc-ref %outputs "out") "/lib/tracker-2.0"))
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs/reference"
+ (substitute* (find-files "." "\\..*ml$")
+ (("http://www.oasis-open.org/docbook/xml/4.5/")
+ (string-append (assoc-ref inputs "docbook-xml-4.5")
+ "/xml/dtd/docbook/"))
+ (("http://www.oasis-open.org/docbook/xml/4.3/")
+ (string-append (assoc-ref inputs "docbook-xml-4.3")
+ "/xml/dtd/docbook/"))
+ (("http://www.oasis-open.org/docbook/xml/4.1.2/")
+ (string-append (assoc-ref inputs "docbook-xml-4.1.2")
+ "/xml/dtd/docbook/"))))))
(add-before 'check 'pre-check
(lambda _
;; Some tests expect to write to $HOME.
(setenv "HOME" "/tmp")
- #t)))))
+ #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"))))))))
(native-inputs
- `(("glib:bin" ,glib "bin")
+ `(("docbook-xml-4.1.2" ,docbook-xml-4.1.2)
+ ("docbook-xml-4.3" ,docbook-xml-4.3)
+ ("docbook-xml-4.5" ,docbook-xml)
+ ("docbook-xsl" ,docbook-xsl)
+ ("glib:bin" ,glib "bin")
("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
("python-pygobject" ,python-pygobject)
("intltool" ,intltool)
("pkg-config" ,pkg-config)
- 95/124: gnu: gst-plugins-good: Update to 1.18.4., (continued)
- 95/124: gnu: gst-plugins-good: Update to 1.18.4., guix-commits, 2021/08/17
- 102/124: gnu: glib: Disable failing test., guix-commits, 2021/08/17
- 106/124: gnu: glib-networking: Update to 2.68.0., guix-commits, 2021/08/17
- 109/124: gnu: gnutls: Enable PKCS#11 support., guix-commits, 2021/08/17
- 115/124: gnu: libsoup: Disable ssl-test., guix-commits, 2021/08/17
- 48/124: gnu: libgsf: Change build-system., guix-commits, 2021/08/17
- 97/124: gnu: gst-libav: Update to 1.18.4., guix-commits, 2021/08/17
- 103/124: gnu: meson-0.55: Update to 0.55.3., guix-commits, 2021/08/17
- 104/124: gnu: docbook-xsl: Update to 1.79.2., guix-commits, 2021/08/17
- 116/124: gnu: libepoxy: Propagate mesa., guix-commits, 2021/08/17
- 118/124: gnu: tracker: Enable documentation.,
guix-commits <=
- 56/124: gnu: atk: Update to 2.36.0., guix-commits, 2021/08/17
- 57/124: gnu: atk: Update home-page and license., guix-commits, 2021/08/17
- 58/124: gnu: atkmm: Update to 2.36.0., guix-commits, 2021/08/17
- 61/124: gnu: Add atkmm-2.28., guix-commits, 2021/08/17
- 72/124: gnu: wayland: Update synopsis, description and license., guix-commits, 2021/08/17
- 75/124: gnu: gtk+-2: Enable tests., guix-commits, 2021/08/17
- 77/124: gnu: gtk+-2: Update to 2.24.33., guix-commits, 2021/08/17
- 84/124: gnu: ibus: Update to 1.5.24., guix-commits, 2021/08/17
- 86/124: gnu: ibus: Enable memconf., guix-commits, 2021/08/17
- 89/124: gnu: iqa: Correct source uri., guix-commits, 2021/08/17