source: general/prog/tcl.xml@ a0f03b0

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since a0f03b0 was a0f03b0, checked in by Archaic <archaic@…>, 20 years ago

Inserting sect1info

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

  • Property mode set to 100644
File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY tcl-download-http "http://prdownloads.sourceforge.net/tcl/tcl&tcl-version;-src.tar.gz">
8<!ENTITY tcl-download-ftp "ftp://ftp.us.xemacs.org/pub/tcl/tcl8_4/tcl&tcl-version;-src.tar.gz">
9<!ENTITY tcl-size "3.3 MB">
10<!ENTITY tcl-buildsize "17.1 MB">
11<!ENTITY tcl-time "0.27 SBU">
12
13]>
14
15<sect1 id="tcl" xreflabel="Tcl-&tcl-version;">
16<sect1info>
17<othername>$LastChangedBy: $</othername>
18<date>$Date: $</date>
19</sect1info>
20<?dbhtml filename="tcl.html"?>
21<title>Tcl-&tcl-version;</title>
22
23<sect2>
24<title>Introduction to <application>Tcl</application></title>
25
26<para>The <application>Tcl</application> package contains the Tool Command
27Language, a robust general-purpose scripting language.</para>
28
29<sect3><title>Package information</title>
30<itemizedlist spacing='compact'>
31<listitem><para>Download (HTTP): <ulink
32url="&tcl-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink
34url="&tcl-download-ftp;"/></para></listitem>
35<listitem><para>Download size: &tcl-size;</para></listitem>
36<listitem><para>Estimated Disk space required:
37&tcl-buildsize;</para></listitem>
38<listitem><para>Estimated build time:
39&tcl-time;</para></listitem></itemizedlist>
40</sect3>
41
42</sect2>
43
44<sect2>
45<title>Installation of <application>Tcl</application></title>
46
47<note><para>This package is also installed in <acronym>LFS</acronym>
48during the bootstrap phase. The significant difference between the
49two installations (other than installing to
50<filename class="directory">/usr</filename>) is to install
51the package in such a way that there is no need to keep the build
52directory around after installation.</para></note>
53
54<para>Install <application>Tcl</application> by running the following
55commands:</para>
56
57<screen><userinput><command>VERSION=&tcl-version; &amp;&amp;
58V=`echo $VERSION | cut -d "." -f 1,2` &amp;&amp;
59DIR=$PWD &amp;&amp;
60cd unix &amp;&amp;
61./configure --prefix=/usr &amp;&amp;
62make &amp;&amp;
63sed -i "s:${DIR}/unix:/usr/lib:" tclConfig.sh &amp;&amp;
64sed -i "s:${DIR}:/usr/include/tcl${V}:" tclConfig.sh &amp;&amp;
65sed -i "s,^TCL_LIB_FILE='libtcl${V}..TCL_DBGX..so',TCL_LIB_FILE=\"libtcl${V}\$\{TCL_DBGX\}.so\"," \
66 tclConfig.sh &amp;&amp;
67mv ../doc/{,Tcl_}Thread.3 &amp;&amp;
68sed -i 's/ Thread.3/ Tcl_Thread.3/' mkLinks &amp;&amp;
69make install &amp;&amp;
70install -d /usr/include/tcl${V}/unix &amp;&amp;
71install -m644 *.h /usr/include/tcl${V}/unix/ &amp;&amp;
72install -d /usr/include/tcl${V}/generic &amp;&amp;
73install -c -m644 ../generic/*.h /usr/include/tcl${V}/generic/ &amp;&amp;
74rm -f /usr/include/tcl${V}/generic/{tcl,tclDecls,tclPlatDecls}.h &amp;&amp;
75ln -nsf ../../include/tcl${V} /usr/lib/tcl${V}/include &amp;&amp;
76ln -sf libtcl${V}.so /usr/lib/libtcl.so &amp;&amp;
77ln -sf tclsh${V} /usr/bin/tclsh</command></userinput></screen>
78
79<note><para>If you build the package as an ordinary user and then switch to root to
80install the package, ensure you set the environment variables
81<envar>V</envar> and <envar>VERSION</envar> before running the installation
82commands.</para></note>
83
84</sect2>
85
86<sect2>
87<title>Command explanations</title>
88
89<para><command>sed -i ...</command>: The <application>Tcl</application>
90package assumes that the source that is used to build
91<application>Tcl</application> is always kept around for compiling packages
92that depend on <application>Tcl</application>. These <command>sed</command>'s
93remove the reference to the build directory and replace them by saner system
94wide locations.</para>
95
96<para><command>install ...</command>: These commands install the internal
97headers into a system-wide location.</para>
98
99<para><command>ln -sf ...</command>: These commands create compatibility
100symbolic links.</para>
101</sect2>
102
103<sect2>
104<title>Contents</title>
105
106<para>The <application>Tcl</application> package contains
107<command>tclsh</command> and the
108<filename class='libraryfile'>libtcl</filename> libraries.</para>
109
110</sect2>
111
112<sect2><title>Description</title>
113
114<sect3><title>tclsh</title>
115<para><command>tclsh</command> is a simple shell containing the
116<application>Tcl</application> interpreter.</para></sect3>
117
118</sect2>
119
120</sect1>
Note: See TracBrowser for help on using the repository browser.