gnu: subversion: Update to 1.7.18.
[jackhill/guix/guix.git] / gnu / packages / texinfo.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
a24b75d8 2;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
c5d83768 3;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
db32c281 4;;;
233e7676 5;;; This file is part of GNU Guix.
db32c281 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
db32c281
LC
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
233e7676 12;;; GNU Guix is distributed in the hope that it will be useful, but
db32c281
LC
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
233e7676 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
db32c281 19
1ffa7090 20(define-module (gnu packages texinfo)
4a44e743 21 #:use-module (guix licenses)
db32c281
LC
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
c5d83768 25 #:use-module (gnu packages)
1ffa7090 26 #:use-module (gnu packages compression)
a24b75d8 27 #:use-module (gnu packages perl)
1ffa7090 28 #:use-module (gnu packages ncurses))
db32c281
LC
29
30(define-public texinfo
31 (package
32 (name "texinfo")
b16b7a06 33 (version "5.2")
a24b75d8
LC
34 (source (origin
35 (method url-fetch)
36 (uri (string-append "mirror://gnu/texinfo/texinfo-"
37 version ".tar.xz"))
38 (sha256
39 (base32
b16b7a06 40 "1njfwh2z34r2c4r0iqa7v24wmjzvsfyz4vplzry8ln3479lfywal"))))
db32c281 41 (build-system gnu-build-system)
f6d7be1e 42 (inputs `(("ncurses" ,ncurses)
3d6b71e8
LC
43 ("xz" ,xz)
44 ("perl" ,perl)))
a24b75d8 45 (home-page "http://www.gnu.org/software/texinfo/")
f50d2669 46 (synopsis "The GNU documentation format")
db32c281 47 (description
a22dc0c4 48 "Texinfo is the official documentation format of the GNU project. It
79c311b8
LC
49uses a single source file using explicit commands to produce a final document
50in any of several supported output formats, such as HTML or PDF. This
51package includes both the tools necessary to produce Info documents from
52their source and the command-line Info reader. The emphasis of the language
53is on expressing the content semantically, avoiding physical markup commands.")
4a44e743 54 (license gpl3+)))
bbafef3f
MW
55
56(define-public texinfo-4
57 (package (inherit texinfo)
58 (version "4.13a")
59 (source (origin
60 (method url-fetch)
61 (uri (string-append
62 "mirror://gnu/texinfo/texinfo-"
63 version
64 ".tar.lzma"))
65 (sha256
66 (base32
67 "1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d"))))
68 (inputs `(("ncurses" ,ncurses) ("xz" ,xz)))))
c5d83768
EB
69
70(define-public texi2html
71 (package
72 (name "texi2html")
73 (version "5.0")
74 (source (origin
75 (method url-fetch)
76 (uri (string-append "mirror://savannah/" name "/" name "-"
77 version ".tar.bz2"))
78 (sha256
79 (base32
80 "1yprv64vrlcbksqv25asplnjg07mbq38lfclp1m5lj8cw878pag8"))
d759cf67
LC
81 (patches
82 (list (search-patch "texi2html-document-encoding.patch")))
83 (snippet
84 ;; This file is modified by the patch above, but reset its
85 ;; timestamp so we don't trigger the rule to update PO files,
86 ;; which would require Gettext.
87 ;; See <http://bugs.gnu.org/18247>.
88 '(utime "texi2html.pl" 0 0 0 0))))
c5d83768 89 (build-system gnu-build-system)
c5d83768
EB
90 (inputs `(("perl" ,perl)))
91 (home-page "http://www.nongnu.org/texi2html/")
92 (synopsis "Convert Texinfo to HTML")
93 (description
94 "Texi2HTML is a Perl script which converts Texinfo source files to HTML
95output. It now supports many advanced features, such as internationalization
96and extremely configurable output formats.
97
98Development of Texi2HTML moved to the GNU Texinfo repository in 2010, since it
99was meant to replace the makeinfo implementation in GNU Texinfo. The route
100forward for authors is, in most cases, to alter manuals and build processes as
101necessary to use the new features of the makeinfo/texi2any implementation of
102GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal author
103of the GNU Texinfo implementation) do not intend to make further releases of
104Texi2HTML.")
105 ;; Files in /lib under lgpl2.1+ and x11
106 (license gpl2+)))