source: general/prog/tk.xml@ 2d1ea57b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 2d1ea57b was 4a40984, checked in by Ken Moffat <ken@…>, 12 years ago

Tagging. And for udev, remind people to check these current instructions agaisnt those they used when building LFS - I got caught out by the need to use a downloaded testfile when making check for 7.0, I'm sure there have been other changes over the years which mean these instructions are not always appropriate.

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

  • Property mode set to 100644
File size: 6.0 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 tk-download-http "&sourceforge-repo;/tcl/tk&tk-version;-src.tar.gz">
8 <!ENTITY tk-download-ftp "&gentoo-ftp-repo;/tk&tk-version;-src.tar.gz">
9 <!ENTITY tk-md5sum "7cdeb9feb61593f58a0ae61f2497580e">
10 <!ENTITY tk-size "3.8 MB">
11 <!ENTITY tk-buildsize "32 MB">
12 <!ENTITY tk-time "0.5 SBU">
13
14 <!-- Ensure this is updated when Tk moves from the 8.5.x branch -->
15 <!ENTITY tk-ver "8.5">
16]>
17
18<sect1 id="tk" xreflabel="Tk-&tk-version;">
19 <?dbhtml filename="tk.html"?>
20
21 <sect1info>
22 <othername>$LastChangedBy$</othername>
23 <date>$Date$</date>
24 </sect1info>
25
26 <title>Tk-&tk-version;</title>
27
28 <indexterm zone="tk">
29 <primary sortas="a-Tk">Tk</primary>
30 </indexterm>
31
32 <sect2 role="package">
33 <title>Introduction to Tk</title>
34
35 <para>The <application>Tk</application> package contains a
36 TCL GUI Toolkit.</para>
37
38 &lfs71_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&tk-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&tk-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &tk-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &tk-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &tk-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &tk-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">Tk Dependencies</bridgehead>
63
64 <bridgehead renderas="sect4">Required</bridgehead>
65 <para role="required"><xref linkend="x-window-system"/> and
66 <xref linkend="tcl"/></para>
67
68 <para condition="html" role="usernotes">User Notes:
69 <ulink url="&blfs-wiki;/tk"/></para>
70
71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of Tk</title>
75
76<para>Install <application>Tk</application> by running the following
77commands:</para>
78
79<screen><userinput>cd unix &amp;&amp;
80./configure --prefix=/usr \
81 --enable-threads \
82 --mandir=/usr/share/man &amp;&amp;
83make &amp;&amp;
84sed -i \
85 -e "s@^\(TK_SRC_DIR='\).*@\1/usr/include'@" \
86 -e "/TK_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \
87 tkConfig.sh</userinput></screen>
88
89 <para>Running the tests is not recommended. Some tests may crash your X
90 Server. To test the results anyway, issue: <command>make test</command>.
91 Ensure you run it from an X Window display device with the GLX extensions
92 loaded, otherwise the tests will hang.</para>
93
94 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
95
96<screen role="root"><userinput>make install &amp;&amp;
97make install-private-headers &amp;&amp;
98ln -v -sf wish&tk-ver; /usr/bin/wish &amp;&amp;
99chmod -v 755 /usr/lib/libtk8.5.so</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="commands">
104 <title>Command Explanations</title>
105
106 <para><parameter>--enable-threads</parameter>: This switch forces the
107 package to build with thread support.</para>
108
109 <para><command>make install-private-headers</command>: This command is
110 used to install the <application>Tk</application> library interface
111 headers used by other packages if they link to the
112 <application>Tk</application> library.</para>
113
114 <para><command>ln -v -sf wish&tk-ver; /usr/bin/wish</command>: This
115 command is used to create a compatibility symbolic link to the
116 <command>wish&tk-ver;</command> file as many packages expect a file
117 named <command>wish</command>.</para>
118
119 <para><command>sed -i -e ... tkConfig.sh</command>: The
120 <application>Tk</application> package expects that its source tree is
121 preserved so that packages depending on it for their compilation
122 can utilize it. This <command>sed</command> removes the references to the
123 build directory and replaces them with saner system-wide locations.</para>
124
125 </sect2>
126
127 <sect2 role="content">
128 <title>Contents</title>
129
130 <segmentedlist>
131 <segtitle>Installed Programs</segtitle>
132 <segtitle>Installed Libraries</segtitle>
133 <segtitle>Installed Directories</segtitle>
134
135 <seglistitem>
136 <seg>wish and wish&tk-ver;</seg>
137 <seg>libtk.so and libtkstub&tk-ver;.a</seg>
138 <seg>/usr/lib/tk&tk-ver;</seg>
139 </seglistitem>
140 </segmentedlist>
141
142 <variablelist>
143 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
144 <?dbfo list-presentation="list"?>
145 <?dbhtml list-presentation="table"?>
146
147 <varlistentry id="wish">
148 <term><command>wish</command></term>
149 <listitem>
150 <para> is a symlink to the <command>wish&tk-ver;</command>
151 program.</para>
152 <indexterm zone="tk wish">
153 <primary sortas="g-wish">wish</primary>
154 </indexterm>
155 </listitem>
156 </varlistentry>
157
158 <varlistentry id="wish-eight">
159 <term><command>wish&tk-ver;</command></term>
160 <listitem>
161 <para> is a simple shell containing the
162 <application>Tk</application> toolkit that creates a main window and
163 then processes <application>Tcl</application> commands.</para>
164 <indexterm zone="tk wish-eight">
165 <primary sortas="b-wish&tk-ver;">wish&tk-ver;</primary>
166 </indexterm>
167 </listitem>
168 </varlistentry>
169
170 <varlistentry id="libtk">
171 <term><filename role="library">libtk.so</filename></term>
172 <listitem>
173 <para>contains the API functions required
174 by <application>Tk</application>.</para>
175 <indexterm zone="tk libtk">
176 <primary sortas="c-libtk">libtk.so</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 </variablelist>
182
183 </sect2>
184
185</sect1>
Note: See TracBrowser for help on using the repository browser.