mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-01 13:02:35 +08:00
52d29f7a42
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2304 af4574ff-66df-0310-9fd7-8a98e5e911e0
93 lines
4.3 KiB
XML
93 lines
4.3 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY tcl-download-http "http://prdownloads.sourceforge.net/tcl/tcl&tcl-version;-src.tar.gz">
|
|
<!ENTITY tcl-download-ftp "ftp://ftp.us.xemacs.org/pub/tcl/tcl8_4/tcl&tcl-version;-src.tar.gz">
|
|
<!ENTITY tcl-size "3.3 MB">
|
|
<!ENTITY tcl-buildsize "17.1 MB">
|
|
<!ENTITY tcl-time "0.27 SBU">
|
|
|
|
]>
|
|
|
|
<sect1 id="tcl" xreflabel="Tcl-&tcl-version;">
|
|
<?dbhtml filename="tcl.html"?>
|
|
<title>Tcl-&tcl-version;</title>
|
|
|
|
<sect2>
|
|
<title>Introduction to <application>Tcl</application></title>
|
|
|
|
<para>The <application>Tcl</application> package contains Tool Command Language. </para>
|
|
|
|
<sect3><title>Package information</title>
|
|
<itemizedlist spacing='compact'>
|
|
<listitem><para>Download (HTTP): <ulink
|
|
url="&tcl-download-http;"/></para></listitem>
|
|
<listitem><para>Download (FTP): <ulink
|
|
url="&tcl-download-ftp;"/></para></listitem>
|
|
<listitem><para>Download size: &tcl-size;</para></listitem>
|
|
<listitem><para>Estimated Disk space required:
|
|
&tcl-buildsize;</para></listitem>
|
|
<listitem><para>Estimated build time:
|
|
&tcl-time;</para></listitem></itemizedlist>
|
|
</sect3>
|
|
|
|
</sect2>
|
|
|
|
<sect2>
|
|
<title>Installation of <application>Tcl</application></title>
|
|
|
|
<note><para>This package is also installed in <acronym>LFS</acronym>
|
|
during the bootstrap phase. The significant difference between the
|
|
two installations (other than installing to <filename class="directory">/usr</filename>) is to install
|
|
the package in such a way that there is no need to keep the build
|
|
directory around after installation.</para></note>
|
|
|
|
<para>Install <application>Tcl</application> by running the following commands:</para>
|
|
|
|
<screen><userinput><command>VERSION=&tcl-version; &&
|
|
V=`echo $VERSION | cut -d "." -f 1,2` &&
|
|
DIR=$PWD &&
|
|
cd unix &&
|
|
./configure --prefix=/usr &&
|
|
make &&
|
|
sed -i "s:${DIR}/unix:/usr/lib:" tclConfig.sh &&
|
|
sed -i "s:${DIR}:/usr/include/tcl${V}:" tclConfig.sh &&
|
|
sed -i "s,^TCL_LIB_FILE='libtcl${V}..TCL_DBGX..so',TCL_LIB_FILE=\"libtcl${V}\$\{TCL_DBGX\}.so\"," \
|
|
tclConfig.sh &&
|
|
mv ../doc/{,Tcl_}Thread.3 &&
|
|
sed -i 's/ Thread.3/ Tcl_Thread.3/' mkLinks &&
|
|
make install &&
|
|
install -d /usr/include/tcl${V}/unix &&
|
|
install -m644 *.h /usr/include/tcl${V}/unix/ &&
|
|
install -d /usr/include/tcl${V}/generic &&
|
|
install -c -m644 ../generic/*.h /usr/include/tcl${V}/generic/ &&
|
|
rm -f /usr/include/tcl${V}/generic/{tcl,tclDecls,tclPlatDecls}.h &&
|
|
ln -nsf /usr/include/tcl${V} /usr/lib/tcl${V}/include &&
|
|
ln -sf libtcl${V}.so /usr/lib/libtcl.so &&
|
|
ln -sf tclsh${V} /usr/bin/tclsh</command></userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2>
|
|
<title>Command explanations</title>
|
|
|
|
<para><command>sed -i ...</command>: The <application>Tcl</application>
|
|
package assumes that the source that is used to build <application>Tcl
|
|
</application> is always kept around for compiling packages that depend on
|
|
<application>Tcl</application>. These <command>sed</command>'s remove the
|
|
reference to the build directory and replace them by saner system wide
|
|
locations.</para>
|
|
|
|
<para><command>install ...</command>: These commands install the internal
|
|
headers into a system-wide location.</para>
|
|
|
|
<para><command>ln -sf ...</command>: These commands create compatibility
|
|
symbolic links.</para>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|