Changeset 37191af for networking


Ignore:
Timestamp:
05/07/2016 04:37:10 AM (8 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
systemd-13485
Children:
d7bee48
Parents:
54aaa89
Message:

Sync to trunk r17270. Last round for the night.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17330 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
networking
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • networking/connect/dhcp.xml

    r54aaa89 r37191af  
    77  <!ENTITY dhcp-download-http " ">
    88  <!ENTITY dhcp-download-ftp  "ftp://ftp.isc.org/isc/dhcp/&dhcp-version;/dhcp-&dhcp-version;.tar.gz">
    9   <!ENTITY dhcp-md5sum        "60f330a69566c52d841ddaab9d7a2662">
    10   <!ENTITY dhcp-size          "8.8 MB">
    11   <!ENTITY dhcp-buildsize     "212 MB">
     9  <!ENTITY dhcp-md5sum        "0138319fe2b788cf4bdf34fbeaf9ff54">
     10  <!ENTITY dhcp-size          "8.9 MB">
     11  <!ENTITY dhcp-buildsize     "213 MB">
    1212  <!ENTITY dhcp-time          "0.5 SBU">
    1313]>
     
    175175
    176176    <para>
    177       To test the results, issue: <command>make check</command>
     177     <!--  To test the results, issue: <command>make check</command>
     178
     179           Note: make check builds a library, but otherwise does nothing.
     180
     181      -->
     182      This packages does not come with a test suite.
    178183    </para>
    179184
  • networking/mailnews/mutt.xml

    r54aaa89 r37191af  
    88  <!ENTITY mutt-download-http " ">
    99  <!ENTITY mutt-download-ftp  "ftp://ftp.mutt.org/pub/mutt/mutt-&mutt-version;.tar.gz">
    10   <!ENTITY mutt-md5sum        "7f25d27f3c7c82285ac07aac35f5f0f2">
     10  <!ENTITY mutt-md5sum        "d05bb821d7040c61ba89b22d7c2bd388">
    1111  <!ENTITY mutt-size          "3.8 MB">
    12   <!ENTITY mutt-buildsize     "36 MB (plus a further 8MB for the PDF manual)">
     12  <!ENTITY mutt-buildsize     "37 MB (plus a further 5MB for the PDF manual)">
    1313  <!ENTITY mutt-time          "0.3 SBU (plus a further 0.2 SBU to build the PDF manual)">
    1414]>
     
    114114    <title>Installation of Mutt</title>
    115115
    116     <note>
    117       <para>This version of <application>Mutt</application> is a development
    118       release.  The BLFS editors have determined that it provides a stable
    119       program and fixes two issues in the current stable version of
    120       <application>Mutt</application>: a segmentation fault that occurs under
    121       certain conditions and a compilation problem when building with recent
    122       versions of <application>GCC</application>.
    123       </para>
    124     </note>
    125 
    126116    <para><application>Mutt</application> requires a group named
    127117    <systemitem class="groupname">mail</systemitem>.  You can
     
    146136
    147137<screen><userinput>cp -v doc/manual.txt{,.shipped} &amp;&amp;
    148 ./configure --prefix=/usr     \
    149             --sysconfdir=/etc \
     138./configure --prefix=/usr                                    \
     139            --sysconfdir=/etc                                \
    150140            --with-docdir=/usr/share/doc/mutt-&mutt-version; \
    151             --enable-pop      \
    152             --enable-imap     \
    153             --enable-hcache   \
    154             --without-qdbm    \
    155             --with-gdbm       \
    156             --without-bdb     \
    157             --without-tokyocabinet &amp;&amp;
     141            --enable-external-dotlock                        \
     142            --enable-pop                                     \
     143            --enable-imap                                    \
     144            --enable-hcache                                  &amp;&amp;
    158145make &amp;&amp;
    159146test -s doc/manual.txt || mv -v doc/manual.txt{.shipped,}</userinput></screen>
     
    170157<screen role='root'><userinput>make install</userinput></screen>
    171158
    172     <para>If you generated the PDF manual, install it and the source TeX
    173     file by issuing the following command as the
     159    <para>If you generated the PDF manual, install it
     160    by issuing the following command as the
    174161    <systemitem class="username">root</systemitem> user:</para>
    175162
    176 <screen role='root'><userinput>install -v -m644 doc/manual.{pdf,tex} \
     163<screen role='root'><userinput>install -v -m644 doc/manual.pdf \
    177164    /usr/share/doc/mutt-&mutt-version;</userinput></screen>
    178165
     166    <note>
     167      <para>
     168        If you used a DESTDIR method to only install to a temporary location
     169        as a regular user (as part of a package management process), you will
     170        need to run the following as the <systemitem class="username">root</systemitem>
     171        user after completing the real install:
     172      </para>
     173
     174<screen role="nodump"><userinput>chown root:mail /usr/bin/mutt_dotlock &amp;&amp;
     175chmod -v 2755 /usr/bin/mutt_dotlock</userinput></screen>
     176    </note>
    179177  </sect2>
    180178
     
    182180    <title>Command Explanations</title>
    183181
     182    <para><parameter>--enable-external-dotlock</parameter>: In some
     183    circumstances the mutt-dotlock program is not created. This switch ensures
     184    that it is always created.</para>
     185
    184186    <para><parameter>--enable-pop</parameter>: This switch enables
    185187    POP3 support.</para>
     
    190192    <para><parameter>--enable-hcache</parameter>: This switch enables
    191193    header caching.</para>
    192 
    193     <para><parameter>--without-qdbm</parameter>: This switch disables
    194     <application>QDBM</application> as the header cache backend.</para>
    195 
    196     <para><parameter>--without-tokyocabinet</parameter>: This switch disables
    197     <application>Tokyo Cabinet</application> as the header cache backend.</para>
    198 
    199     <para><parameter>--with-gdbm</parameter>: This switch enables
    200     <application>GDBM</application> as the header cache backend.</para>
    201 
    202     <para><parameter>--without-bdb</parameter>: This switch disables
    203      <application>Berkeley DB</application> as the header cache backend.</para>
    204194
    205195    <para><option>--enable-smtp</option>: This switch enables
     
    216206    authentication.</para>
    217207
    218     <para><option>--with-slang</option>: Use <application>S-Lang
    219     </application> instead of <application>Ncurses</application>.</para>
    220 
    221     <para><option>test -s doc/manual.txt || mv -v doc/manual.txt{.shipped,}</option>:
     208    <para><parameter>>test -s doc/manual.txt || mv -v doc/manual.txt{.shipped,}</parameter>:
    222209    if the text manual is now empty (<application>libxslt</application> is installed,
    223210    but without any of the specified text browsers), restore it from the copy.</para>
  • networking/netprogs/samba.xml

    r54aaa89 r37191af  
    77  <!ENTITY samba-download-http "https://download.samba.org/pub/samba/stable/samba-&samba-version;.tar.gz">
    88  <!ENTITY samba-download-ftp  " ">
    9   <!ENTITY samba-md5sum        "48df803c6c6c475a714cae82a2dc219e">
     9  <!ENTITY samba-md5sum        "03a65a3adf08ceb1636ad59d234d7f9d">
    1010  <!ENTITY samba-size          "20 MB">
    1111  <!ENTITY samba-buildsize     "500 MB (additional 407 MB for the quicktest, reputedly up to 500 MB additional for all tests)">
     
    8383      <xref linkend="libgpg-error"/>,
    8484      <xref linkend="linux-pam"/>,
    85       <xref linkend="mitkrb"/> (currently, problems, despite successful build),
     85      <xref linkend="mitkrb"/>,
    8686      <xref linkend="popt"/>,
    8787      <xref linkend="python3"/>,
Note: See TracChangeset for help on using the changeset viewer.