Ignore:
Timestamp:
04/11/2016 08:34:16 PM (8 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
096aa70
Parents:
594df26
Message:

Update to fontforge-dist-20160404, mutt-1.6.0, xf86-video-ati-7.7.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • networking/mailnews/mutt.xml

    r594df26 r0f0774a  
    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>
     165
     166    <note>
     167      <para>
     168        If you used a DESTDIR method to only install to a temporary location as
     169        a regular user (as part of a package menagement process), you will need
     170        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_dotclock</userinput></screen>
     176    </note>
     177
    178178
    179179  </sect2>
     
    182182    <title>Command Explanations</title>
    183183
     184    <para><parameter>--enable-external-dotlock</parameter>: In some circumstances
     185    the mutt-dotlock program is not created. This switch ensures it is always
     186    created.</para>
     187
    184188    <para><parameter>--enable-pop</parameter>: This switch enables
    185189    POP3 support.</para>
     
    190194    <para><parameter>--enable-hcache</parameter>: This switch enables
    191195    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>
    204196
    205197    <para><option>--enable-smtp</option>: This switch enables
     
    216208    authentication.</para>
    217209
    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>:
     210    <!-- we do not normally list all possible switches. LFS installs ncurses.
     211    <para><option>\-\-with-slang</option>: Use <application>S-Lang
     212    </application> instead of <application>Ncurses</application>.</para> -->
     213
     214    <para><parameter>test -s doc/manual.txt || mv -v doc/manual.txt{.shipped,}</parameter>:
    222215    if the text manual is now empty (<application>libxslt</application> is installed,
    223216    but without any of the specified text browsers), restore it from the copy.</para>
Note: See TracChangeset for help on using the changeset viewer.