source: archive/tcl.xml@ f4002c5

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since f4002c5 was f4002c5, checked in by Bruce Dubbs <bdubbs@…>, 4 years ago

Archive expect, dejagnu, and tcl which are now included in LFS.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@23319 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY tcl-download-http "&sourceforge-dl;/tcl/tcl&tcl-version;-src.tar.gz">
8 <!ENTITY tcl-download-ftp " ">
9 <!ENTITY tcl-md5sum "97c55573f8520bcab74e21bfd8d0aadc">
10 <!ENTITY tcl-size "9.7 MB">
11 <!ENTITY tcl-buildsize "67 MB (including html documentation)">
12 <!ENTITY tcl-time "0.7 SBU (add 2.7 SBU for tests)">
13
14 <!ENTITY tcl-doc-download "&sourceforge-dl;/tcl/tcl&tcl-version;-html.tar.gz">
15 <!ENTITY tcl-doc-md5sum "a012711241ba3a5bd4a04e833001d489">
16 <!ENTITY tcl-doc-size "1.2 MB">
17
18 <!-- Ensure this is updated when Tcl moves from the 8.6.x branch -->
19 <!ENTITY tcl-ver "8.6">
20 <!ENTITY tdbc-ver "1.1.1">
21 <!ENTITY itcl-ver "4.2.0">
22 <!ENTITY thread-ver "2.8.5">
23 <!ENTITY sqlite3-ver "3.30.1.2">
24]>
25
26<sect1 id="tcl" xreflabel="Tcl-&tcl-version;">
27 <?dbhtml filename="tcl.html"?>
28
29 <sect1info>
30 <othername>$LastChangedBy$</othername>
31 <date>$Date$</date>
32 </sect1info>
33
34 <title>Tcl-&tcl-version;</title>
35
36 <indexterm zone="tcl">
37 <primary sortas="a-Tcl">Tcl</primary>
38 </indexterm>
39
40 <sect2 role="package">
41 <title>Introduction to Tcl</title>
42
43 <para>
44 The <application>Tcl</application> package contains the Tool Command
45 Language, a robust general-purpose scripting language.
46 </para>
47
48 &lfs91_checked;
49
50 <bridgehead renderas="sect3">Package Information</bridgehead>
51 <itemizedlist spacing="compact">
52 <listitem>
53 <para>
54 Download (HTTP): <ulink url="&tcl-download-http;"/>
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download (FTP): <ulink url="&tcl-download-ftp;"/>
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download MD5 sum: &tcl-md5sum;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Download size: &tcl-size;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Estimated disk space required: &tcl-buildsize;
75 </para>
76 </listitem>
77 <listitem>
78 <para>
79 Estimated build time: &tcl-time;
80 </para>
81 </listitem>
82 </itemizedlist>
83
84 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
85 <itemizedlist spacing="compact">
86 <title>Optional Documentation</title>
87 <listitem>
88 <para>
89 Download (HTTP): <ulink url="&tcl-doc-download;"/>
90 </para>
91 </listitem>
92 <listitem>
93 <para>
94 Download MD5 sum: &tcl-doc-md5sum;
95 </para>
96 </listitem>
97 <listitem>
98 <para>
99 Download size: &tcl-doc-size;
100 </para>
101 </listitem>
102 </itemizedlist>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/tcl"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of Tcl</title>
111
112 <para>
113 This package is also installed in LFS during the bootstrap phase.
114 As it is not installed during Chapter 6 of LFS, installation instructions
115 are included here in BLFS.
116 </para>
117
118 <para>
119 If you downloaded the optional documentation, unpack the tarball
120 by issuing the following command:
121 </para>
122
123<screen><userinput>tar -xf ../tcl&tcl-version;-html.tar.gz --strip-components=1</userinput></screen>
124
125 <para>
126 Install <application>Tcl</application> by running the following
127 commands:
128 </para>
129
130<screen><userinput>export SRCDIR=`pwd` &amp;&amp;
131
132cd unix &amp;&amp;
133
134./configure --prefix=/usr \
135 --mandir=/usr/share/man \
136 $([ $(uname -m) = x86_64 ] &amp;&amp; echo --enable-64bit) &amp;&amp;
137make &amp;&amp;
138
139sed -e "s#$SRCDIR/unix#/usr/lib#" \
140 -e "s#$SRCDIR#/usr/include#" \
141 -i tclConfig.sh &amp;&amp;
142
143sed -e "s#$SRCDIR/unix/pkgs/tdbc&tdbc-ver;#/usr/lib/tdbc&tdbc-ver;#" \
144 -e "s#$SRCDIR/pkgs/tdbc&tdbc-ver;/generic#/usr/include#" \
145 -e "s#$SRCDIR/pkgs/tdbc&tdbc-ver;/library#/usr/lib/tcl8.6#" \
146 -e "s#$SRCDIR/pkgs/tdbc&tdbc-ver;#/usr/include#" \
147 -i pkgs/tdbc&tdbc-ver;/tdbcConfig.sh &amp;&amp;
148
149sed -e "s#$SRCDIR/unix/pkgs/itcl&itcl-ver;#/usr/lib/itcl&itcl-ver;#" \
150 -e "s#$SRCDIR/pkgs/itcl&itcl-ver;/generic#/usr/include#" \
151 -e "s#$SRCDIR/pkgs/itcl&itcl-ver;#/usr/include#" \
152 -i pkgs/itcl&itcl-ver;/itclConfig.sh &amp;&amp;
153
154unset SRCDIR</userinput></screen>
155
156
157 <para>
158 To test the results, issue: <command>make test</command>.
159 <!-- Tests known to fail: cmdAH.test and tdbcodbc.test. 8.6.9: No
160 failures -->
161 </para>
162
163 <para>
164 Now, as the <systemitem class="username">root</systemitem> user:
165 </para>
166
167<screen role="root"><userinput>make install &amp;&amp;
168make install-private-headers &amp;&amp;
169ln -v -sf tclsh&tcl-ver; /usr/bin/tclsh &amp;&amp;
170chmod -v 755 /usr/lib/libtcl&tcl-ver;.so</userinput></screen>
171
172 <para>
173 If you downloaded the optional documentation, install it by issuing
174 the following commands as the
175 <systemitem class="username">root</systemitem> user:
176 </para>
177
178<screen role="root"><userinput>mkdir -v -p /usr/share/doc/tcl-&tcl-version; &amp;&amp;
179cp -v -r ../html/* /usr/share/doc/tcl-&tcl-version;</userinput></screen>
180
181 </sect2>
182
183 <sect2 role="commands">
184 <title>Command Explanations</title>
185
186 <para>
187 <parameter>$([ $(uname -m) = x86_64 ] &amp;&amp; echo
188 --enable-64bit)</parameter>: This switch is used to enable 64 bit
189 support in <application>Tcl</application> on 64 bit operating
190 systems.
191 </para>
192
193 <para>
194 <command>make install-private-headers</command>: This command is
195 used to install the <application>Tcl</application> library interface
196 headers used by other packages if they link to the
197 <application>Tcl</application> library.
198 </para>
199
200 <para>
201 <command>ln -v -sf tclsh&tcl-ver; /usr/bin/tclsh</command>: This
202 command is used to create a compatibility symbolic link to the
203 <command>tclsh&tcl-ver;</command> file as many packages expect a file
204 named <command>tclsh</command>.
205 </para>
206
207 <para>
208 <command>sed -e ...</command>: The <application>Tcl</application> package
209 expects that its source tree is preserved so that packages depending on
210 it for their compilation can utilize it. These <command>sed</command>
211 remove the references to the build directory and replace them with saner
212 system-wide locations.
213 </para>
214
215 </sect2>
216
217 <sect2 role="content">
218 <title>Contents</title>
219
220 <segmentedlist>
221 <segtitle>Installed Programs</segtitle>
222 <segtitle>Installed Libraries</segtitle>
223 <segtitle>Installed Directories</segtitle>
224
225 <seglistitem>
226 <seg>
227 sqlite3_analyzer, tclsh, and tclsh&tcl-ver;
228 </seg>
229 <seg>
230 libtcl&tcl-ver;.so and libtclstub&tcl-ver;.a
231 </seg>
232 <seg>
233 /usr/lib/itcl&itcl-ver;,
234 /usr/lib/sqlite&sqlite3-ver;
235 /usr/lib/tcl8,
236 /usr/lib/tcl&tcl-ver;,
237 /usr/lib/tdbc&tdbc-ver;,
238 /usr/lib/tdbcmysql&tdbc-ver;,
239 /usr/lib/tdbcodbc&tdbc-ver;,
240 /usr/lib/tdbcpostgres&tdbc-ver;,
241 /usr/lib/thread&thread-ver;,
242 /usr/share/doc/tcl-&tcl-version;, and
243 /usr/share/man/mann
244 </seg>
245 </seglistitem>
246 </segmentedlist>
247
248 <variablelist>
249 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
250 <?dbfo list-presentation="list"?>
251 <?dbhtml list-presentation="table"?>
252
253 <varlistentry id="sqlite3_analyzer">
254 <term><command>sqlite3_analyzer</command></term>
255 <listitem>
256 <para>
257 is a program to analyze sqlite3 database files and output a report
258 that gives information on size and storage efficiency for the
259 database and it's tables and indexes.
260 </para>
261 <indexterm zone="tcl sqlite3_analyzer">
262 <primary sortas="b-sqlite3_analyzer">sqlite3_analyzer</primary>
263 </indexterm>
264 </listitem>
265 </varlistentry>
266
267 <varlistentry id="tclsh">
268 <term><command>tclsh</command></term>
269 <listitem>
270 <para>
271 is a symlink to the <command>tclsh&tcl-ver;</command> program.
272 </para>
273 <indexterm zone="tcl tclsh">
274 <primary sortas="b-tclsh">tclsh</primary>
275 </indexterm>
276 </listitem>
277 </varlistentry>
278
279 <varlistentry id="tclsh-eight">
280 <term><command>tclsh&tcl-ver;</command></term>
281 <listitem>
282 <para>
283 is a simple shell containing the
284 <application>Tcl</application> interpreter.
285 </para>
286 <indexterm zone="tcl tclsh-eight">
287 <primary sortas="b-tclsh&tcl-ver;">tclsh&tcl-ver;</primary>
288 </indexterm>
289 </listitem>
290 </varlistentry>
291
292 <varlistentry id="libtcl">
293 <term><filename class="libraryfile">libtcl&tcl-ver;.so</filename></term>
294 <listitem>
295 <para>
296 contains the API functions required by
297 <application>Tcl</application>.
298 </para>
299 <indexterm zone="tcl libtcl">
300 <primary sortas="c-libtcl">libtcl&tcl-ver;.so</primary>
301 </indexterm>
302 </listitem>
303 </varlistentry>
304
305 </variablelist>
306
307 </sect2>
308
309</sect1>
Note: See TracBrowser for help on using the repository browser.