mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
0a43695c61
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19788 af4574ff-66df-0310-9fd7-8a98e5e911e0
233 lines
6.7 KiB
XML
233 lines
6.7 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY tk-download-http "&sourceforge-dl;/tcl/tk&tk-version;-src.tar.gz">
|
|
<!ENTITY tk-download-ftp " ">
|
|
<!ENTITY tk-md5sum "5e0faecba458ee1386078fb228d008ba">
|
|
<!ENTITY tk-size "4.1 MB">
|
|
<!ENTITY tk-buildsize "24 MB">
|
|
<!ENTITY tk-time "0.3 SBU (add 1.5 SBU for tests)">
|
|
|
|
<!-- Ensure this is updated when Tk moves from the 8.6.x branch -->
|
|
<!ENTITY tk-ver "8.6">
|
|
]>
|
|
|
|
<sect1 id="tk" xreflabel="Tk-&tk-version;">
|
|
<?dbhtml filename="tk.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>Tk-&tk-version;</title>
|
|
|
|
<indexterm zone="tk">
|
|
<primary sortas="a-Tk">Tk</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to Tk</title>
|
|
|
|
<para>
|
|
The <application>Tk</application> package contains a
|
|
TCL GUI Toolkit.
|
|
</para>
|
|
|
|
&lfs82_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&tk-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&tk-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &tk-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &tk-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &tk-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &tk-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">Tk Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="tcl"/> and
|
|
<xref linkend="xorg7-lib"/>
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
<ulink url="&blfs-wiki;/tk"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Tk</title>
|
|
|
|
<para>
|
|
Install <application>Tk</application> by running the following
|
|
commands:
|
|
</para>
|
|
|
|
<screen><userinput>cd unix &&
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
$([ $(uname -m) = x86_64 ] && echo --enable-64bit) &&
|
|
|
|
make &&
|
|
|
|
sed -e "s@^\(TK_SRC_DIR='\).*@\1/usr/include'@" \
|
|
-e "/TK_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \
|
|
-i tkConfig.sh</userinput></screen>
|
|
|
|
<para>
|
|
Running the tests is not recommended. Failures will be reported during the
|
|
tests, depending on the screen resolution/capabilities, fonts installed
|
|
and other X related parameters, but the end report can show 0 failures.
|
|
Some tests will steal focus and some might crash your X Server. To test
|
|
the results anyway, issue: <command>make test</command>. Ensure you run
|
|
it from an X Window display device with the GLX extensions loaded, but
|
|
even so, tests might hang.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make install &&
|
|
make install-private-headers &&
|
|
ln -v -sf wish&tk-ver; /usr/bin/wish &&
|
|
chmod -v 755 /usr/lib/libtk&tk-ver;.so</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<para>
|
|
<parameter>$([ $(uname -m) = x86_64 ] && echo
|
|
--enable-64bit)</parameter>: This switch is used to enable 64 bit
|
|
support in <application>Tk</application> on 64 bit operating
|
|
systems.
|
|
</para>
|
|
|
|
<para>
|
|
<command>make install-private-headers</command>: This command is
|
|
used to install the <application>Tk</application> library interface
|
|
headers used by other packages if they link to the
|
|
<application>Tk</application> library.
|
|
</para>
|
|
|
|
<para>
|
|
<command>ln -v -sf wish&tk-ver; /usr/bin/wish</command>: This
|
|
command is used to create a compatibility symbolic link to the
|
|
<command>wish&tk-ver;</command> file as many packages expect a file
|
|
named <command>wish</command>.
|
|
</para>
|
|
|
|
<para>
|
|
<command>sed -e ... tkConfig.sh</command>: The
|
|
<application>Tk</application> package expects that its source tree is
|
|
preserved so that packages depending on it for their compilation
|
|
can utilize it. This <command>sed</command> removes the references to the
|
|
build directory and replaces them with saner system-wide locations.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Libraries</segtitle>
|
|
<segtitle>Installed Directory</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
wish and wish&tk-ver;
|
|
</seg>
|
|
<seg>
|
|
libtk&tk-ver;.so and libtkstub&tk-ver;.a
|
|
</seg>
|
|
<seg>
|
|
/usr/lib/tk&tk-ver;
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="wish">
|
|
<term><command>wish</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a symlink to the <command>wish&tk-ver;</command> program.
|
|
</para>
|
|
<indexterm zone="tk wish">
|
|
<primary sortas="b-wish">wish</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="wish-eight">
|
|
<term><command>wish&tk-ver;</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a simple shell containing the
|
|
<application>Tk</application> toolkit that creates a main window and
|
|
then processes <application>Tcl</application> commands.
|
|
</para>
|
|
<indexterm zone="tk wish-eight">
|
|
<primary sortas="b-wish&tk-ver;">wish&tk-ver;</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libtk">
|
|
<term><filename class="libraryfile">libtk&tk-ver;.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains the API functions required
|
|
by <application>Tk</application>.
|
|
</para>
|
|
<indexterm zone="tk libtk">
|
|
<primary sortas="c-libtk">libtk&tk-ver;.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|