gnu: giflib: Return #t from all phases.
[jackhill/guix/guix.git] / gnu / packages / tcl.scm
CommitLineData
4a219a1a 1;;; GNU Guix --- Functional package management for GNU
9b1bf330 2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
c9a46555 3;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
de0c3141 4;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
e5a2edeb 5;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
50fe318c 6;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
3c8ba11a 7;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
9cc03bbf 8;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
4a219a1a
LC
9;;;
10;;; This file is part of GNU Guix.
11;;;
12;;; GNU Guix is free software; you can redistribute it and/or modify it
13;;; under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 3 of the License, or (at
15;;; your option) any later version.
16;;;
17;;; GNU Guix is distributed in the hope that it will be useful, but
18;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
1ffa7090 25(define-module (gnu packages tcl)
4a219a1a
LC
26 #:use-module (guix packages)
27 #:use-module (guix download)
28 #:use-module (guix build-system gnu)
de0c3141 29 #:use-module (guix build-system perl)
f5ea273a 30 #:use-module (gnu packages)
e55354b8 31 #:use-module (gnu packages image)
c3aeac38 32 #:use-module (gnu packages fontutils)
de0c3141
EB
33 #:use-module (gnu packages perl)
34 #:use-module (gnu packages pkg-config)
511539ae 35 #:use-module (gnu packages xml)
765904ce 36 #:use-module (gnu packages xorg)
4a219a1a
LC
37 #:use-module (guix licenses))
38
39(define-public tcl
40 (package
41 (name "tcl")
f7c03e45 42 (version "8.6.7")
f8e7fdc4
LC
43 (source (origin
44 (method url-fetch)
45 (uri (string-append "mirror://sourceforge/tcl/Tcl/"
46 version "/tcl" version "-src.tar.gz"))
47 (sha256
48 (base32
f7c03e45 49 "19bb09l55alz4jb38961ikd5116q80s51bjvzqy44ckkwf28ysvw"))))
4a219a1a
LC
50 (build-system gnu-build-system)
51 (arguments
1004a92c
MB
52 '(#:phases (modify-phases %standard-phases
53 (add-before 'configure 'pre-configure
54 (lambda _ (chdir "unix") #t))
55 (add-after 'install 'install-private-headers
56 (lambda* (#:key outputs #:allow-other-keys)
57 ;; Private headers are needed by Expect.
58 (and (zero? (system* "make"
59 "install-private-headers"))
60 (let ((bin (string-append (assoc-ref outputs "out")
61 "/bin")))
62 ;; Create a tclsh -> tclsh8.6 symlink.
63 ;; Programs such as Ghostscript rely on it.
64 (with-directory-excursion bin
65 (symlink (car (find-files "." "tclsh"))
66 "tclsh"))
67 #t)))))
eb6d676e 68
c9a46555
MW
69 ;; By default, man pages are put in PREFIX/man, but we want them in
70 ;; PREFIX/share/man. The 'validate-documentation-location' phase is
71 ;; not able to fix this up because the default install populates both
72 ;; PREFIX/man and PREFIX/share/man.
73 #:configure-flags (list (string-append "--mandir="
74 (assoc-ref %outputs "out")
75 "/share/man"))
76
eb6d676e
LC
77 ;; XXX: There are a few test failures (related to HTTP, most
78 ;; likely related to name resolution), but that doesn't cause
79 ;; `make' to fail.
80 #:test-target "test"))
4a219a1a
LC
81 (home-page "http://www.tcl.tk/")
82 (synopsis "The Tcl scripting language")
83 (description "The Tcl (Tool Command Language) scripting language.")
e4c38581 84 (license tcl/tk)))
4a219a1a
LC
85
86
87(define-public expect
88 (package
89 (name "expect")
9cc03bbf 90 (version "5.45.4")
4a219a1a
LC
91 (source
92 (origin
93 (method url-fetch)
94 (uri (string-append "mirror://sourceforge/expect/Expect/"
95 version "/expect" version ".tar.gz"))
96 (sha256
97 (base32
9cc03bbf 98 "0d1cp5hggjl93xwc8h1y6adbnrvpkk0ywkd00inz9ndxn21xm9s9"))))
4a219a1a
LC
99 (build-system gnu-build-system)
100 (inputs
101 `(;; TODO: Add these optional dependencies.
102 ;; ("libX11" ,libX11)
6a6db57f 103 ;; ("xorgproto" ,xorgproto)
4a219a1a
LC
104 ;; ("tk" ,tk)
105 ("tcl" ,tcl)))
106 (arguments
107 '(#:configure-flags
988cecfd
MW
108 (let ((out (assoc-ref %outputs "out"))
109 (tcl (assoc-ref %build-inputs "tcl")))
110 (list (string-append "--with-tcl=" tcl "/lib")
111 (string-append "--with-tclinclude=" tcl "/include")
112 (string-append "--exec-prefix=" out)
113 (string-append "--mandir=" out "/share/man")))
eb6d676e 114
dc1d3cde
KK
115 #:phases
116 (modify-phases %standard-phases
117 (add-before 'configure 'set-path-to-stty
118 (lambda _
119 (substitute* "configure"
120 (("STTY_BIN=/bin/stty")
121 (string-append "STTY_BIN=" (which "stty"))))
122 #t)))
d5529a91 123
eb6d676e 124 #:test-target "test"))
ad549242 125 (home-page "http://expect.sourceforge.net/")
9e771e3b 126 (synopsis "Tool for automating interactive applications")
4a219a1a
LC
127 (description
128 "Expect is a tool for automating interactive applications such as
129telnet, ftp, passwd, fsck, rlogin, tip, etc. Expect really makes this
35b9e423
EB
130stuff trivial. Expect is also useful for testing these same
131applications. And by adding Tk, you can wrap interactive applications in
4a219a1a
LC
132X11 GUIs.")
133 (license public-domain))) ; as written in `license.terms'
765904ce
LC
134
135(define-public tk
136 (package
137 (name "tk")
f7c03e45 138 (version "8.6.7")
765904ce
LC
139 (source (origin
140 (method url-fetch)
141 (uri (string-append "mirror://sourceforge/tcl/Tcl/"
142 version "/tk" version "-src.tar.gz"))
143 (sha256
144 (base32
f7c03e45 145 "1aipcf6qmbgi15av8yrpp2hx6vdwr684r6739p8cgdzrajiy4786"))
fc1adab1 146 (patches (search-patches "tk-find-library.patch"))))
765904ce
LC
147 (build-system gnu-build-system)
148 (arguments
c3aeac38
LC
149 '(#:phases (modify-phases %standard-phases
150 (add-before
151 'configure 'pre-configure
152 (lambda _
153 (chdir "unix")))
154 (add-after
155 'install 'add-fontconfig-flag
156 (lambda* (#:key inputs outputs #:allow-other-keys)
157 ;; Add the missing -L flag for Fontconfig in 'tk.pc' and
158 ;; 'tkConfig.sh'.
159 (let ((out (assoc-ref outputs "out"))
160 (fontconfig (assoc-ref inputs "fontconfig")))
161 (substitute* (find-files out
162 "^(tkConfig\\.sh|tk\\.pc)$")
163 (("-lfontconfig")
164 (string-append "-L" fontconfig
165 "/lib -lfontconfig")))
166 #t))))
765904ce
LC
167
168 #:configure-flags (list (string-append "--with-tcl="
169 (assoc-ref %build-inputs "tcl")
170 "/lib"))
171
172 ;; The tests require a running X server, so we just skip them.
173 #:tests? #f))
8a0263f1
SB
174 (native-inputs `(("pkg-config" ,pkg-config)))
175 (inputs `(("libxft" ,libxft)
c3aeac38 176 ("fontconfig" ,fontconfig)
8a0263f1 177 ("tcl" ,tcl)))
765904ce
LC
178 ;; tk.h refers to X11 headers, hence the propagation.
179 (propagated-inputs `(("libx11" ,libx11)
180 ("libxext" ,libxext)))
181
182 (home-page "http://www.tcl.tk/")
183 (synopsis "Graphical user interface toolkit for Tcl")
184 (description
cb150ca3
LC
185 "Tk is a graphical toolkit for building graphical user
186interfaces (GUIs) in the Tcl language.")
765904ce 187 (license (package-license tcl))))
de0c3141
EB
188
189(define-public perl-tk
190 (package
191 (name "perl-tk")
b1c699c4 192 (version "804.034")
de0c3141
EB
193 (source (origin
194 (method url-fetch)
195 (uri (string-append
196 "mirror://cpan/authors/id/S/SR/SREZIC/Tk-"
197 version ".tar.gz"))
198 (sha256
199 (base32
b1c699c4 200 "1qiz55dmw7hm1wgpjdzf2jffwcj0hisr3kf80qi8lli3qx2b39py"))))
de0c3141
EB
201 (build-system perl-build-system)
202 (native-inputs `(("pkg-config" ,pkg-config)))
203 (inputs `(("libx11" ,libx11)
204 ("libpng" ,libpng)
205 ("libjpeg" ,libjpeg)))
206 (arguments
207 `(#:make-maker-flags `(,(string-append
cb150ca3
LC
208 "X11=" (assoc-ref %build-inputs "libx11")))
209
210 ;; Fails to build in parallel: <http://bugs.gnu.org/18262>.
211 #:parallel-build? #f))
de0c3141
EB
212 (synopsis "Graphical user interface toolkit for Perl")
213 (description
214 "Tk is a Graphical User Interface ToolKit.")
215 (home-page (string-append "http://search.cpan.org/~srezic/Tk-" version))
216 ;; From the package README: "... you can redistribute it and/or modify it
217 ;; under the same terms as Perl itself, with the exception of all the
218 ;; files in the pTk sub-directory which have separate terms derived from
219 ;; those of the orignal Tix4.1.3 or Tk8.4.* sources. See the files
220 ;; pTk/license.terms, pTk/license.html_lib, and pTk/Tix.license for
221 ;; details of this license."
2f3108ad 222 (license perl-license)))
50fe318c
JN
223
224(define-public tcllib
225 (package
226 (name "tcllib")
227 (version "1.18")
228 (source (origin
229 (method url-fetch)
de67e922
LF
230 (uri (string-append "mirror://sourceforge/" name "/" name "/"
231 version "/" name "-" version ".tar.gz"))
50fe318c
JN
232 (sha256
233 (base32
234 "05dmrk9qsryah2n17z6z85dj9l9lfyvnsd7faw0p9bs1pp5pwrkj"))))
235 (build-system gnu-build-system)
236 (native-inputs
237 `(("tcl" ,tcl)))
238 (native-search-paths
239 (list (search-path-specification
240 (variable "TCLLIBPATH")
241 (separator " ")
242 (files (list (string-append "lib/tcllib" version))))))
243 (home-page "https://core.tcl.tk/tcllib/home")
244 (synopsis "Standard Tcl Library")
245 (description "Tcllib, the standard Tcl library, is a collection of common
246utility functions and modules all written in high-level Tcl.")
247 (license (package-license tcl))))
511539ae 248
1966481f
DM
249(define-public tklib
250 (package
251 (name "tklib")
252 (version "0.6")
253 (source (origin
254 (method url-fetch)
255 (uri (string-append "https://core.tcl.tk/tklib/tarball/tklib-"
256 version ".tar.gz?uuid=tklib-0-6"))
257 (sha256
258 (base32
259 "03y0bzgwbh7nnyqkh8n00bbkq2fyblq39s3bdb6mawna0bbn0wwg"))))
260 (build-system gnu-build-system)
261 (native-inputs
262 `(("tcl" ,tcl)))
263 (propagated-inputs
264 `(("tcllib" ,tcllib)
265 ("tk" ,tk))) ; for "wish"
266 (native-search-paths
267 (list (search-path-specification
268 (variable "TCLLIBPATH")
269 (separator " ")
270 (files (list (string-append "lib/tklib" version))))))
271 (home-page "https://www.tcl.tk/software/tklib/")
272 (synopsis "Tk utility modules for Tcl")
273 (description "Tklib is a collection of common utility functions and
274modules for Tk, all written in high-level Tcl. Examples of provided widgets:
275@enumerate
276@item @code{chatwidget}
277@item @code{datefield}
958be7a4 278@item @code{tooltip}
1966481f
DM
279@item @code{cursor}
280@item @code{ipentry}
281@item @code{tablelist}
282@item @code{history}
283@item @code{tkpiechart}
284@item @code{ico}
285@item @code{crosshair}
286@item @code{ntext}
287@item @code{plotchart}
288@item @code{ctext}
289@item @code{autosscroll}
290@item @code{canvas}
eb52d637 291@end enumerate")
1966481f
DM
292 (license (package-license tcl))))
293
511539ae
JN
294(define-public tclxml
295 (package
296 (name "tclxml")
297 (version "3.2")
298 (source (origin
299 (method url-fetch)
de67e922
LF
300 (uri (string-append "mirror://sourceforge/" name "/TclXML/"
301 version "/" name "-" version ".tar.gz"))
511539ae
JN
302 (sha256
303 (base32
304 "0ffb4aw63inig3aql33g4pk0kjk14dv238anp1scwjdjh1k6n4gl"))
fc1adab1 305 (patches (search-patches "tclxml-3.2-install.patch"))))
511539ae
JN
306 (build-system gnu-build-system)
307 (native-inputs
308 `(("tcl" ,tcl)
511539ae
JN
309 ("libxml2" ,libxml2)
310 ("libxslt" ,libxslt)))
bc01c891
DM
311 (propagated-inputs
312 `(("tcllib" ,tcllib))) ; uri
511539ae
JN
313 (native-search-paths
314 (list (search-path-specification
315 (variable "TCLLIBPATH")
316 (separator " ")
317 (files (list (string-append "lib/Tclxml" version))))))
318 (arguments
319 `(#:configure-flags
320 (list (string-append "--exec-prefix=" (assoc-ref %outputs "out"))
321 (string-append "--with-tclconfig="
322 (assoc-ref %build-inputs "tcl") "/lib")
323 (string-append "--with-xml2-config="
324 (assoc-ref %build-inputs "libxml2")
325 "/bin/xml2-config")
326 (string-append "--with-xslt-config="
327 (assoc-ref %build-inputs "libxslt")
328 "/bin/xslt-config"))
329 #:test-target "test"))
330 (home-page "http://tclxml.sourceforge.net/")
331 (synopsis "Tcl library for XML parsing")
332 (description "TclXML provides event-based parsing of XML documents. The
333application may register callback scripts for certain document features, and
334when the parser encounters those features while parsing the document the
335callback is evaluated.")
336 (license (non-copyleft
337 "file://LICENCE"
338 "See LICENCE in the distribution."))))
0ef83ec9
KK
339
340(define-public tclx
341 (package
342 (name "tclx")
343 (version "8.4.1")
344 (source (origin
345 (method url-fetch)
346 (uri (string-append "mirror://sourceforge/tclx/TclX/"
347 version "/tclx" version ".tar.bz2"))
348 (sha256
349 (base32
350 "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59"))))
351 (build-system gnu-build-system)
352 (arguments
353 '(#:tests? #f ; a test named profile.test segfaults
354 #:configure-flags (list (string-append "--with-tcl="
355 (assoc-ref %build-inputs "tcl")
356 "/lib")
357 (string-append "--libdir="
358 (assoc-ref %outputs "out")
359 "/lib"))))
360 (inputs
361 `(("tcl" ,tcl)
362 ("tk" ,tk)))
363 (home-page "http://tclx.sourceforge.net/")
364 (synopsis "System programming extensions for Tcl")
365 (description
366 "Extended Tcl is oriented towards system programming tasks and large
367application development. TclX provides additional interfaces to the operating
368system, and adds many new programming constructs, text manipulation tools, and
369debugging tools.")
370 (license tcl/tk)))