source: general/prog/tk.xml@ 07499ecc

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 07499ecc was 49a84b87, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Update to mariadb-10.3.9.
Update to Archive-Zip-1.62 (Perl Module).
Archive lxqt
Tags

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

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[52d29f7]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[8dfc5c3]7 <!ENTITY tk-download-http "&sourceforge-dl;/tcl/tk&tk-version;-src.tar.gz">
[c786e55]8 <!ENTITY tk-download-ftp " ">
[f22b905]9 <!ENTITY tk-md5sum "5e0faecba458ee1386078fb228d008ba">
[b5e1815e]10 <!ENTITY tk-size "4.1 MB">
11 <!ENTITY tk-buildsize "24 MB">
[f22b905]12 <!ENTITY tk-time "0.3 SBU (add 1.5 SBU for tests)">
[4d62032]13
[82fac2c]14 <!-- Ensure this is updated when Tk moves from the 8.6.x branch -->
15 <!ENTITY tk-ver "8.6">
[52d29f7]16]>
17
[503b39f]18<sect1 id="tk" xreflabel="Tk-&tk-version;">
[516af114]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
[e8f7606]35 <para>
36 The <application>Tk</application> package contains a
37 TCL GUI Toolkit.
38 </para>
[516af114]39
[49a84b87]40 &lfs83_checked;
[4a40984]41
[516af114]42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
[e8f7606]45 <para>
46 Download (HTTP): <ulink url="&tk-download-http;"/>
47 </para>
[516af114]48 </listitem>
49 <listitem>
[e8f7606]50 <para>
51 Download (FTP): <ulink url="&tk-download-ftp;"/>
52 </para>
[516af114]53 </listitem>
54 <listitem>
[e8f7606]55 <para>
56 Download MD5 sum: &tk-md5sum;
57 </para>
[516af114]58 </listitem>
59 <listitem>
[e8f7606]60 <para>
61 Download size: &tk-size;
62 </para>
[516af114]63 </listitem>
64 <listitem>
[e8f7606]65 <para>
66 Estimated disk space required: &tk-buildsize;
67 </para>
[516af114]68 </listitem>
69 <listitem>
[e8f7606]70 <para>
71 Estimated build time: &tk-time;
72 </para>
[516af114]73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Tk Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Required</bridgehead>
[e8f7606]79 <para role="required">
80 <xref linkend="tcl"/> and
81 <xref linkend="xorg7-lib"/>
82 </para>
[516af114]83
[1039de3]84 <para condition="html" role="usernotes">User Notes:
[82fac2c]85 <ulink url="&blfs-wiki;/tk"/>
86 </para>
[516af114]87 </sect2>
88
89 <sect2 role="installation">
90 <title>Installation of Tk</title>
[511fd69c]91
[e8f7606]92 <para>
93 Install <application>Tk</application> by running the following
94 commands:
95 </para>
[511fd69c]96
[33fd7e43]97<screen><userinput>cd unix &amp;&amp;
[1d82919]98./configure --prefix=/usr \
[82fac2c]99 --mandir=/usr/share/man \
100 $([ $(uname -m) = x86_64 ] &amp;&amp; echo --enable-64bit) &amp;&amp;
101
[206b7a1]102make &amp;&amp;
[82fac2c]103
[e8f7606]104sed -e "s@^\(TK_SRC_DIR='\).*@\1/usr/include'@" \
[206b7a1]105 -e "/TK_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \
[e8f7606]106 -i tkConfig.sh</userinput></screen>
[516af114]107
[e8f7606]108 <para>
[66f48aa2]109 Running the tests is not recommended. Failures will be reported during the
110 tests, depending on the screen resolution/capabilities, fonts installed
111 and other X related parameters, but the end report can show 0 failures.
112 Some tests will steal focus and some might crash your X Server. To test
[1b3d6bd4]113 the results anyway, issue: <command>make test</command>. Ensure you run
114 it from an X Window display device with the GLX extensions loaded, but
[66f48aa2]115 even so, tests might hang.
[e8f7606]116 </para>
[516af114]117
[e8f7606]118 <para>
119 Now, as the <systemitem class="username">root</systemitem> user:
120 </para>
[516af114]121
122<screen role="root"><userinput>make install &amp;&amp;
[33fd7e43]123make install-private-headers &amp;&amp;
[dd01532b]124ln -v -sf wish&tk-ver; /usr/bin/wish &amp;&amp;
[e8f7606]125chmod -v 755 /usr/lib/libtk&tk-ver;.so</userinput></screen>
[d8614521]126
[516af114]127 </sect2>
128
129 <sect2 role="commands">
130 <title>Command Explanations</title>
131
[e8f7606]132 <para>
[5a464e4d]133 <parameter>$([ $(uname -m) = x86_64 ] &amp;&amp; echo
134 --enable-64bit)</parameter>: This switch is used to enable 64 bit
[82fac2c]135 support in <application>Tk</application> on 64 bit operating
136 systems.
[e8f7606]137 </para>
138
139 <para>
140 <command>make install-private-headers</command>: This command is
141 used to install the <application>Tk</application> library interface
142 headers used by other packages if they link to the
143 <application>Tk</application> library.
144 </para>
145
146 <para>
147 <command>ln -v -sf wish&tk-ver; /usr/bin/wish</command>: This
148 command is used to create a compatibility symbolic link to the
149 <command>wish&tk-ver;</command> file as many packages expect a file
150 named <command>wish</command>.
151 </para>
152
153 <para>
154 <command>sed -e ... tkConfig.sh</command>: The
155 <application>Tk</application> package expects that its source tree is
156 preserved so that packages depending on it for their compilation
157 can utilize it. This <command>sed</command> removes the references to the
158 build directory and replaces them with saner system-wide locations.
159 </para>
[516af114]160
161 </sect2>
162
163 <sect2 role="content">
164 <title>Contents</title>
165
166 <segmentedlist>
167 <segtitle>Installed Programs</segtitle>
168 <segtitle>Installed Libraries</segtitle>
[e8f7606]169 <segtitle>Installed Directory</segtitle>
[516af114]170
171 <seglistitem>
[e8f7606]172 <seg>
173 wish and wish&tk-ver;
174 </seg>
175 <seg>
176 libtk&tk-ver;.so and libtkstub&tk-ver;.a
177 </seg>
178 <seg>
179 /usr/lib/tk&tk-ver;
180 </seg>
[516af114]181 </seglistitem>
182 </segmentedlist>
183
184 <variablelist>
185 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
186 <?dbfo list-presentation="list"?>
187 <?dbhtml list-presentation="table"?>
188
189 <varlistentry id="wish">
190 <term><command>wish</command></term>
191 <listitem>
[e8f7606]192 <para>
193 is a symlink to the <command>wish&tk-ver;</command> program.
194 </para>
[516af114]195 <indexterm zone="tk wish">
[b960e3ec]196 <primary sortas="b-wish">wish</primary>
[516af114]197 </indexterm>
198 </listitem>
199 </varlistentry>
200
[36f2c9e]201 <varlistentry id="wish-eight">
202 <term><command>wish&tk-ver;</command></term>
[516af114]203 <listitem>
[e8f7606]204 <para>
205 is a simple shell containing the
206 <application>Tk</application> toolkit that creates a main window and
207 then processes <application>Tcl</application> commands.
208 </para>
[36f2c9e]209 <indexterm zone="tk wish-eight">
210 <primary sortas="b-wish&tk-ver;">wish&tk-ver;</primary>
[516af114]211 </indexterm>
212 </listitem>
213 </varlistentry>
214
215 <varlistentry id="libtk">
[82fac2c]216 <term><filename class="libraryfile">libtk&tk-ver;.so</filename></term>
[516af114]217 <listitem>
[e8f7606]218 <para>
219 contains the API functions required
220 by <application>Tk</application>.
221 </para>
[516af114]222 <indexterm zone="tk libtk">
[e8f7606]223 <primary sortas="c-libtk">libtk&tk-ver;.so</primary>
[516af114]224 </indexterm>
225 </listitem>
226 </varlistentry>
227
228 </variablelist>
229
230 </sect2>
[c4f1401]231
232</sect1>
Note: See TracBrowser for help on using the repository browser.