source: general/prog/tcl.xml@ 97828bc

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules 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 97828bc was 97828bc, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Fix AccountsService md5sum

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

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