all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: guix-devel@gnu.org
Subject: [WIP v0.1 5/8] gnu: Add kde kapidox
Date: Tue, 14 Jun 2016 23:15:07 +0200	[thread overview]
Message-ID: <1465938910-15739-6-git-send-email-h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <1465938910-15739-1-git-send-email-h.goebel@crazy-compilers.com>

* gnu/packages/kde-frameworks.scm (kapidox): New variable.
---
 gnu/packages/kde-frameworks.scm | 44 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0a17568..b1e7038 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -25,6 +25,7 @@
   #:use-module (guix packages)
   #:use-module (guix utils)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages python)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages xorg))
 
@@ -155,6 +156,49 @@ It is the default icon theme for the KDE Plasma 5 desktop.")
     ;; text.
     (license license:lgpl3+)))
 
+(define-public kapidox
+  (package
+    (name "kapidox")
+    (version kde-frameworks-version)
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append "http://download.kde.org/stable/frameworks/"
+                            (version-major+minor version) "/"
+                            name "-" version ".tar.xz"))
+        (sha256
+         (base32
+          "0w3jch93d8vdqd0g4yl2fxmamrg9hnx1lypnpgw7615wlsb02qyx"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f)) ; has no test target
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (propagated-inputs
+     ;; kapidox is a python programm
+     ;; TODO: check if doxygen has to be installed, the readme does not
+     ;; mention it. The openSuse .rpm lists doxygen, graphviz, graphviz-gd,
+     ;; and python-xml.
+     `(("python" ,python)
+       ("python-jinja2" ,python-jinja2)
+       ("python-pyyaml" ,python-pyyaml)))
+    (inputs
+     `(("qt" ,qt)))
+    (home-page "https://community.kde.org/Frameworks")
+    (synopsis "KDE Doxygen Tools")
+
+    (description "This framework contains scripts and data for building API
+documentation (dox) in a standard format and style for KDE.
+
+For the actual documentation extraction and formatting the Doxygen tool is
+used, but this framework provides a wrapper script to make generating the
+documentation more convenient (including reading settings from the target
+framework or other module) and a standard template for the generated
+documentation.")
+    ;; Most parts are bsd-2, but incuded jquery is expat
+    ;; This list is taken from http://packaging.neon.kde.org/cgit/
+    (license (list license:bsd-2 license:expat))))
+
 (define-public kwindowsystem
   (package
     (name "kwindowsystem")
-- 
2.7.4

  parent reply	other threads:[~2016-06-14 21:15 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-14 21:15 [WIP v0.1 0/8] KDE framework 5, tier 1 Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 1/8] extra-cmake: Update comments Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 2/8] gnu: Add kde attica Hartmut Goebel
2016-06-16 18:41   ` Efraim Flashner
2016-06-17  9:26     ` Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 3/8] gnu: Add kde bluez-qt Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 4/8] gnu: Add kde breeze-icons Hartmut Goebel
2016-06-14 21:15 ` Hartmut Goebel [this message]
2016-06-14 21:15 ` [WIP v0.1 6/8] gnu: Add kde karchive Hartmut Goebel
2016-06-15 12:19   ` Efraim Flashner
2016-06-17  9:21     ` Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 7/8] gnu: Add kde kcodecs Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 8/8] gnu: Add kde kconfig Hartmut Goebel
2016-06-15 12:22 ` [WIP v0.1 0/8] KDE framework 5, tier 1 Efraim Flashner
2016-06-17  9:23   ` Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1465938910-15739-6-git-send-email-h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.