guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: dbus: Build documentation (manpages and html).


From: guix-commits
Subject: 01/01: gnu: dbus: Build documentation (manpages and html).
Date: Tue, 15 Jan 2019 00:17:49 -0500 (EST)

apteryx pushed a commit to branch core-updates
in repository guix.

commit cff1927f30c00e6df5a3be5bd7cb769cd1345873
Author: Maxim Cournoyer <address@hidden>
Date:   Thu Jan 10 07:35:38 2019 -0500

    gnu: dbus: Build documentation (manpages and html).
    
    * gnu/packages/glib.scm (dbus)[native-inputs]: Add docbook-xml-4.4,
    docbook-xsl, doxygen, xmlto, libxml2, libxslt and yelp-tools.
    [outputs]: Add a "doc" output to hold the large HTML documentation.
---
 gnu/packages/glib.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index cd9b48c..946ed2b 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2017 Petter <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Alex Vong <address@hidden>
+;;; Copyright © 2019 Maxim Cournoyer <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -33,6 +34,8 @@
   #:use-module (gnu packages bison)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages docbook)
+  #:use-module (gnu packages documentation)
   #:use-module (gnu packages enlightenment)
   #:use-module (gnu packages file)
   #:use-module (gnu packages flex)
@@ -118,14 +121,21 @@
                             "sysconfdir=/tmp/dummy"
                             "install"))))))
     (native-inputs
-     `(("pkg-config" ,pkg-config)))
+     `(("pkg-config" ,pkg-config)
+       ;; Dependencies to generate the doc.
+       ("docbook-xml" ,docbook-xml-4.4)
+       ("docbook-xsl" ,docbook-xsl)
+       ("doxygen" ,doxygen)
+       ("xmlto" ,xmlto)
+       ("libxml2" ,libxml2)             ;for XML_CATALOG_FILES
+       ("libxslt" ,libxslt)
+       ("yelp-tools" ,yelp-tools)))
     (inputs
      `(("expat" ,expat)
-
        ;; Add a dependency on libx11 so that 'dbus-launch' has support for
        ;; '--autolaunch'.
        ("libx11" ,libx11)))
-
+    (outputs '("out" "doc"))            ;22 MiB of HTML doc
     (home-page "https://www.freedesktop.org/wiki/Software/dbus/";)
     (synopsis "Message bus for inter-process communication (IPC)")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]