diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-04-08 15:09:26 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-04-08 16:02:32 +0800 |
commit | 6b1f238834fd60a487e2465c28f5d333c91c72aa (patch) | |
tree | 465b9c49fb4643bfacb3031e243175f756adcb56 /gnu | |
parent | dfbce50cdf36db8fe094afc50c3a24ae3a403839 (diff) | |
download | patches-6b1f238834fd60a487e2465c28f5d333c91c72aa.tar patches-6b1f238834fd60a487e2465c28f5d333c91c72aa.tar.gz |
gnu: gtk+-2: Move html documentation to 'doc' output.
* gnu/packages/gtk.scm (gtk+-2)[outputs]: New field.
[arguments]<#:configure-flags>: Add '--with-html-dir'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 53d4122f7c..4301b56034 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -402,6 +402,7 @@ is part of the GNOME accessibility project.") (base32 "1x14rnjvqslpa1q19fp1qalz5sxds72amsgjk8m7769rwk511jr0")))) (build-system gnu-build-system) + (outputs '("out" "doc")) (propagated-inputs `(("atk" ,atk) ("gdk-pixbuf" ,gdk-pixbuf) @@ -424,7 +425,10 @@ is part of the GNOME accessibility project.") (arguments `(#:make-flags '("CC=gcc") #:configure-flags - (list "--with-xinput=yes") + (list "--with-xinput=yes" + (string-append "--with-html-dir=" + (assoc-ref %outputs "doc") + "/share/gtk-doc/html")) #:phases (alist-cons-before 'configure 'disable-tests |