source: general/prog/tk.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: 3.8 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 tk-download-http "http://prdownloads.sourceforge.net/tcl/tk&tk-version;-src.tar.gz">
8<!ENTITY tk-download-ftp "ftp://ftp.us.xemacs.org/pub/tcl/tcl8_4/tk&tk-version;-src.tar.gz">
9<!ENTITY tk-size "3.1 MB">
10<!ENTITY tk-buildsize "17.4 MB">
11<!ENTITY tk-time "0.41 SBU">
12]>
13
14<sect1 id="tk" xreflabel="Tk-&tk-version;">
15<sect1info>
16<othername>$LastChangedBy: $</othername>
17<date>$Date: $</date>
18</sect1info>
19<?dbhtml filename="tk.html"?>
20<title>Tk-&tk-version;</title>
21
22<sect2>
23<title>Introduction to <application>Tk</application></title>
24
25<para>The <application>Tk</application> package contains a
26<acronym>TCL</acronym> <acronym>GUI</acronym> Toolkit.</para>
27
28<sect3><title>Package information</title>
29<itemizedlist spacing='compact'>
30<listitem><para>Download (HTTP): <ulink
31url="&tk-download-http;"/></para></listitem>
32<listitem><para>Download (FTP): <ulink
33url="&tk-download-ftp;"/></para></listitem>
34<listitem><para>Download size: &tk-size;</para></listitem>
35<listitem><para>Estimated Disk space required:
36&tk-buildsize;</para></listitem>
37<listitem><para>Estimated build time:
38&tk-time;</para></listitem></itemizedlist>
39</sect3>
40
41<sect3><title><application>Tk</application> dependencies</title>
42<sect4><title>Required</title>
43<para>X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>) and
44<xref linkend="tcl"/></para></sect4>
45</sect3>
46
47</sect2>
48
49<sect2>
50<title>Installation of <application>Tk</application></title>
51
52<para>Install <application>Tk</application> by running the following
53commands:</para>
54
55<screen><userinput><command>VERSION=&tk-version; &amp;&amp;
56V=`echo $VERSION | cut -d "." -f 1,2` &amp;&amp;
57DIR=$PWD &amp;&amp;
58cd unix &amp;&amp;
59./configure --prefix=/usr &amp;&amp;
60make &amp;&amp;
61sed -i "s:${DIR}/unix:/usr/lib:" tkConfig.sh &amp;&amp;
62sed -i "s:${DIR}:/usr/include/tk${V}:" tkConfig.sh &amp;&amp;
63make install &amp;&amp;
64install -d /usr/include/tk${V}/unix &amp;&amp;
65install -m644 *.h /usr/include/tk${V}/unix/ &amp;&amp;
66install -d /usr/include/tk${V}/generic &amp;&amp;
67install -m644 ../generic/*.h /usr/include/tk${V}/generic/ &amp;&amp;
68rm -f /usr/include/tk${V}/generic/{tk,tkDecls,tkPlatDecls}.h &amp;&amp;
69ln -nsf ../../include/tk${V} /usr/lib/tk${V}/include &amp;&amp;
70ln -sf libtk${V}.so /usr/lib/libtk.so &amp;&amp;
71ln -sf wish${V} /usr/bin/wish</command></userinput></screen>
72
73<note><para>If you build the package as an ordinary user and then switch to root to
74install the package, ensure you set the environment variables
75<envar>V</envar> and <envar>VERSION</envar> before running the installation
76commands.</para></note>
77
78</sect2>
79
80<sect2>
81<title>Command explanations</title>
82
83<para><command>sed -i ...</command>: The <application>Tk</application> package
84assumes that the source that is used to build <application>Tk</application> is
85always kept around for compiling packages that depend on
86<application>Tk</application>. These <command>sed</command>'s remove the
87reference to the build directory and replace them by saner system wide
88locations.</para>
89
90<para><command>install ...</command>: These commands install the internal
91headers into a system-wide location.</para>
92
93<para><command>ln -sf ...</command>: These commands create compatibility
94symbolic links.</para>
95
96</sect2>
97
98<sect2>
99<title>Contents</title>
100
101<para>The <application>Tk</application> package contains
102<command>wish</command> and the
103<filename class='libraryfile'>libtk</filename> library.</para>
104
105</sect2>
106
107<sect2><title>Description</title>
108
109<sect3><title>wish</title>
110<para><command>wish</command> is a simple shell containing the
111<application>Tk</application> toolkit that creates a main window and
112then processes Tcl commands.</para></sect3>
113
114</sect2>
115
116</sect1>
Note: See TracBrowser for help on using the repository browser.