Changeset 2956bc0 for postlfs/shells


Ignore:
Timestamp:
06/01/2005 07:22:05 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
03ff511
Parents:
12aa92b
Message:

Updated to Tcsh-6.14.00; changed instructions to install tcsh in /bin instead of /usr/bin; updated /etc/shells to include tcsh program names; added html documentation installation to tcsh instructions

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/shells/tcsh.xml

    r12aa92b r2956bc0  
    66
    77  <!ENTITY tcsh-download-http "http://gd.tuwien.ac.at/utils/shells/tcsh/tcsh-&tcsh-version;.tar.gz">
    8   <!ENTITY tcsh-download-ftp  "ftp://ftp.fu-berlin.de/unix/shells/tcsh/tcsh-&tcsh-version;.tar.gz">
    9   <!ENTITY tcsh-size          "804 KB">
    10   <!ENTITY tcsh-buildsize     "9.0 MB">
    11   <!ENTITY tcsh-time          "0.16 SBU">
    12   <!ENTITY tcsh-md5sum        "11c0c9c9148652dc01270c4880d1cc6e">
     8  <!ENTITY tcsh-download-ftp  "ftp://ftp.funet.fi/pub/unix/shells/tcsh/tcsh-&tcsh-version;.tar.gz">
     9  <!ENTITY tcsh-md5sum        "353d1bb7d2741bf8de602c7b6f0efd79">
     10  <!ENTITY tcsh-size          "859 KB">
     11  <!ENTITY tcsh-buildsize     "9 MB">
     12  <!ENTITY tcsh-time          "0.2 SBU">
    1313]>
    1414
     
    3131
    3232    <para>The <application>Tcsh</application> package contains "an enhanced but
    33     completely compatible version of the Berkeley Unix C shell (csh)". This is
    34     useful as an alternative shell for those who prefer C syntax to that of the
    35     bash shell, and also because some programs require the C shell in order to
    36     install.</para>
     33    completely compatible version of the Berkeley Unix C shell
     34    (<command>csh</command>)". This is useful as an alternative shell for those
     35    who prefer C syntax to that of the <command>bash</command> shell, and also
     36    because some programs require the C shell in order to perform installation
     37    tasks.</para>
    3738
    3839    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    6667    commands:</para>
    6768
    68 <screen><userinput>./configure --prefix=/usr &amp;&amp;
    69 make</userinput></screen>
     69<screen><userinput>./configure --prefix=/usr --bindir=/bin &amp;&amp;
     70make &amp;&amp;
     71sh ./tcsh.man2html</userinput></screen>
     72
     73    <para>This package does not come with a test suite.</para>
    7074
    7175    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    7377<screen role="root"><userinput>make install &amp;&amp;
    7478make install.man &amp;&amp;
    75 ln -v -sf /usr/bin/tcsh /bin/csh</userinput></screen>
     79ln -v -sf tcsh /bin/csh &amp;&amp;
     80ln -v -sf tcsh.1 /usr/man/man1/csh.1 &amp;&amp;
     81install -v -m755 -d /usr/share/doc/tcsh-&tcsh-version;/html &amp;&amp;
     82install -v -m644 tcsh.html/* /usr/share/doc/tcsh-&tcsh-version;/html &amp;&amp;
     83install -v -m644 FAQ /usr/share/doc/tcsh-&tcsh-version;</userinput></screen>
    7684
    7785  </sect2>
     
    8088    <title>Command Explanations</title>
    8189
    82     <para><command>ln -v -sf /usr/bin/tcsh /bin/csh</command>: The
    83     FHS states that if there is a <application>C</application> shell
    84     installed, there should be a symlink from <filename>/bin/csh</filename>
    85     to it. This creates that symlink.</para>
     90    <para><parameter>--bindir=/bin</parameter>: This installs the
     91    <command>tcsh</command> program in
     92    <filename class='directory'>/bin</filename> instead of
     93    <filename class='directory'>/usr/bin</filename>.</para>
     94
     95    <para><command>sh ./tcsh.man2html</command>: This creates HTML documentation
     96    from the formatted man page.</para>
     97
     98    <para><command>ln -v -sf tcsh /bin/csh</command>: The FHS states that if
     99    there is a <application>C</application> shell installed, there should be a
     100    symlink from <filename>/bin/csh</filename> to it. This creates that
     101    symlink.</para>
    86102
    87103  </sect2>
     
    140156    </sect3>
    141157
     158    <sect3>
     159      <title>Configuration Information</title>
     160
     161      <para>Update <filename>/etc/shells</filename> to include the C shell
     162      program names (as the <systemitem class="username">root</systemitem>
     163      user:)</para>
     164
     165<screen role="root"><userinput>cat &gt;&gt; /etc/shells &lt;&lt; "EOF"
     166<literal>/bin/tcsh
     167/bin/csh</literal>
     168EOF</userinput></screen>
     169
     170    </sect3>
     171
    142172  </sect2>
    143173
     
    148178      <segtitle>Installed Program</segtitle>
    149179      <segtitle>Installed Libraries</segtitle>
    150       <segtitle>Installed Directories</segtitle>
     180      <segtitle>Installed Directory</segtitle>
    151181
    152182      <seglistitem>
    153183        <seg>tcsh</seg>
    154184        <seg>None</seg>
    155         <seg>None</seg>
     185        <seg>/usr/share/doc/tcsh-&tcsh-version;</seg>
    156186      </seglistitem>
    157187    </segmentedlist>
     
    173203        </listitem>
    174204      </varlistentry>
    175 
    176205    </variablelist>
    177206
Note: See TracChangeset for help on using the changeset viewer.