source: clfs-sysroot/BOOK/final-system/common/tar.xml @ 0185cb5

Last change on this file since 0185cb5 was 0185cb5, checked in by Joe Ciccone <jciccone@…>, 15 years ago

Combine the config.cache entries of sysroot and the main book.

  • Property mode set to 100644
File size: 3.1 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
8<sect1 id="ch-system-tar" role="wrap">
9  <?dbhtml filename="tar.html"?>
10
11  <title>Tar-&tar-version;</title>
12
13  <indexterm zone="ch-system-tar">
14    <primary sortas="a-Tar">Tar</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The Tar package contains an archiving program.</para>
21
22  </sect2>
23
24  &env-target;
25
26  <sect2 role="installation">
27    <title>Installation of Tar</title>
28
29    <para os="p1">The following patch adds a man page for <command>tar</command>:</para>
30
31<screen os="p2"><userinput>patch -Np1 -i ../&tar-man_page-patch;</userinput></screen>
32
33    <para os="p3">The following patch will add support for new compressors like XZ Utils:</para>
34
35<screen os="p4"><userinput>patch -Np1 -i ../&tar-new_compressors-patch;</userinput></screen>
36
37    <para os="a">Configure can not properly determine the results of a few
38    tests. Set them manually:</para>
39
40<screen os="b"><userinput>cat &gt; config.cache &lt;&lt; EOF
41gl_cv_func_wcwidth_works=yes
42gl_cv_func_btowc_eof=yes
43ac_cv_func_malloc_0_nonnull=yes
44ac_cv_func_realloc_0_nonnull=yes
45gl_cv_func_mbrtowc_incomplete_state=yes
46gl_cv_func_mbrtowc_nul_retval=yes
47gl_cv_func_mbrtowc_null_arg=yes
48gl_cv_func_mbrtowc_retval=yes
49gl_cv_func_wcrtomb_retval=yes
50EOF</userinput></screen>
51
52    <para os="a">Prepare Tar for compilation:</para>
53
54<screen os="b"><userinput>./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
55    --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin \
56    --cache-file=config.cache</userinput></screen>
57
58    <para os="c">Compile the package:</para>
59
60<screen os="d"><userinput>make</userinput></screen>
61
62    <para os="e">Install the package:</para>
63
64<screen os="f"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
65
66  </sect2>
67
68  <sect2 id="contents-tar" role="content">
69    <title>Contents of Tar</title>
70
71    <segmentedlist>
72      <segtitle>Installed programs</segtitle>
73
74      <seglistitem>
75        <seg>rmt and tar</seg>
76      </seglistitem>
77    </segmentedlist>
78
79    <variablelist>
80      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
81      <?dbfo list-presentation="list"?>
82      <?dbhtml list-presentation="table"?>
83
84      <varlistentry id="rmt">
85        <term><command>rmt</command></term>
86        <listitem>
87          <para>Remotely manipulates a magnetic
88          tape drive through an interprocess communication connection</para>
89          <indexterm zone="ch-system-tar rmt">
90            <primary sortas="b-rmt">rmt</primary>
91          </indexterm>
92        </listitem>
93      </varlistentry>
94
95      <varlistentry id="tar">
96        <term><command>tar</command></term>
97        <listitem>
98          <para>Creates, extracts files from, and lists the contents of
99          archives, also known as tarballs</para>
100          <indexterm zone="ch-system-tar tar">
101            <primary sortas="b-tar">tar</primary>
102          </indexterm>
103        </listitem>
104      </varlistentry>
105
106    </variablelist>
107
108  </sect2>
109
110</sect1>
Note: See TracBrowser for help on using the repository browser.