Ignore:
Timestamp:
06/12/2004 10:56:28 PM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
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
Children:
d3edf27
Parents:
bfe245f
Message:

XML Updates to Part III from DJ

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/tk.xml

    rbfe245f r52d29f7  
     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
    115<sect1 id="tk" xreflabel="Tk-&tk-version;">
    216<?dbhtml filename="tk.html"?>
    317<title>Tk-&tk-version;</title>
    418
    5 &tk-intro;
    6 &tk-inst;
    7 &tk-exp;
     19<sect2>
     20<title>Introduction to <application>Tk</application></title>
     21                                                                               
     22<para>The <application>Tk</application> package contains
     23<acronym>TCL</acronym> <acronym>GUI</acronym> Toolkit.</para>
     24                                                                               
     25<sect3><title>Package information</title>
     26<itemizedlist spacing='compact'>
     27<listitem><para>Download (HTTP): <ulink
     28url="&tk-download-http;"/></para></listitem>
     29<listitem><para>Download (FTP): <ulink
     30url="&tk-download-ftp;"/></para></listitem>
     31<listitem><para>Download size: &tk-size;</para></listitem>
     32<listitem><para>Estimated Disk space required:
     33&tk-buildsize;</para></listitem>
     34<listitem><para>Estimated build time:
     35&tk-time;</para></listitem></itemizedlist>
     36</sect3>
     37                                                                               
     38<sect3><title><application>Tk</application> dependencies</title>
     39<sect4><title>Required</title>
     40<para>X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>) and <xref linkend="tcl"/></para></sect4>
     41</sect3>
     42
     43</sect2>
     44
     45<sect2>
     46<title>Installation of <application>Tk</application></title>
     47                                                                               
     48<para>Install <application>Tk</application> by running the following commands:</para>
     49                                                                               
     50<screen><userinput><command>VERSION=&tk-version; &amp;&amp;
     51V=`echo $VERSION | cut -d "." -f 1,2` &amp;&amp;
     52DIR=$PWD &amp;&amp;
     53cd unix &amp;&amp;
     54./configure --prefix=/usr &amp;&amp;
     55make &amp;&amp;
     56sed -i "s:${DIR}/unix:/usr/lib:" tkConfig.sh &amp;&amp;
     57sed -i "s:${DIR}:/usr/include/tk${V}:" tkConfig.sh &amp;&amp;
     58make install &amp;&amp;
     59install -d /usr/include/tk${V}/unix &amp;&amp;
     60install -m644 *.h /usr/include/tk${V}/unix/ &amp;&amp;
     61install -d /usr/include/tk${V}/generic &amp;&amp;
     62install -m644 ../generic/*.h /usr/include/tk${V}/generic/ &amp;&amp;
     63rm -f /usr/include/tk${V}/generic/{tk,tkDecls,tkPlatDecls}.h &amp;&amp;
     64ln -nsf /usr/include/tk${V} /usr/lib/tk${V}/include &amp;&amp;
     65ln -sf libtk${V}.so /usr/lib/libtk.so &amp;&amp;
     66ln -sf wish${V} /usr/bin/wish</command></userinput></screen>
     67                                                                               
     68</sect2>
     69
     70<sect2>
     71<title>Command explanations</title>
     72                                                                               
     73<para><command>sed -i ...</command>: The <application>Tk</application> package
     74assumes that the source that is used to build <application>Tk</application> is
     75always kept around for compiling packages that depend on
     76<application>Tk</application>. These <command>sed</command>'s remove the
     77reference to the build directory and replace them by saner system wide
     78locations.</para>
     79                                                                               
     80<para><command>install ...</command>: These commands install the internal
     81headers into a system-wide location.</para>
     82                                                                               
     83<para><command>ln -sf ...</command>: These commands create compatibility
     84symbolic links.</para>
     85                                                                               
     86</sect2>
    887
    988</sect1>
Note: See TracChangeset for help on using the changeset viewer.