Changeset 0f0774a


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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r594df26 r0f0774a  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[ken] - Update to fontforge-20160404. Fixes
     52          <ulink url="&blfs-ticket-root;7689">#7689</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[ken] - Update to mutt-1.6.0. Fixes
     56          <ulink url="&blfs-ticket-root;7687">#7687</ulink>.</para>
     57        </listitem>
     58        <listitem>
     59          <para>[ken] - Update to xf86-video-ati-7.7.0. Fixes
     60          <ulink url="&blfs-ticket-root;7695">#7695</ulink>.</para>
     61        </listitem>
     62        <listitem>
    5163          <para>[igor] - Update to feh-2.15. Fixes
    5264          <ulink url="&blfs-ticket-root;7709">#7709</ulink>.</para>
  • 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>
  • packages.ent

    r594df26 r0f0774a  
    412412<!ENTITY procmail-version             "3.22">
    413413<!ENTITY fetchmail-version            "6.3.26">
    414 <!ENTITY mutt-version                 "1.5.24">
     414<!ENTITY mutt-version                 "1.6.0">
    415415<!ENTITY re-alpine-version            "2.03">
    416416
     
    684684<!ENTITY feh-version                  "2.15">
    685685<!--<!ENTITY fontforge-date               "2015-02-28">-->
    686 <!ENTITY fontforge-version            "20150824">
     686<!ENTITY fontforge-version            "20160404">
    687687<!ENTITY gparted-version              "0.25.0">
    688688<!ENTITY gimp-version                 "2.8.16">
  • x/installing/x7driver-ati.xml

    r594df26 r0f0774a  
    88  <!ENTITY radeon-marketing-names "&radeon-wiki;#Decoder_ring_for_engineering_vs_marketing_names">
    99
    10   <!ENTITY xorg-ati-driver-version "7.6.1">
     10  <!ENTITY xorg-ati-driver-version "7.7.0">
    1111
    1212  <!ENTITY xorg-ati-driver-download-http "&xorg-download-http;/driver/xf86-video-ati-&xorg-ati-driver-version;.tar.bz2">
    1313  <!ENTITY xorg-ati-driver-download-ftp  "&xorg-download-ftp;/driver/xf86-video-ati-&xorg-ati-driver-version;.tar.bz2">
    14   <!ENTITY xorg-ati-driver-md5sum        "ede86cd3d1b1d8882f0aea61d9e924ed">
    15   <!ENTITY xorg-ati-driver-size          "804 KB">
    16   <!ENTITY xorg-ati-driver-buildsize     "10 MB">
     14  <!ENTITY xorg-ati-driver-md5sum        "59bfe0feba875c5cd28b03766aaa3b98">
     15  <!ENTITY xorg-ati-driver-size          "810 KB">
     16  <!ENTITY xorg-ati-driver-buildsize     "20 MB">
    1717  <!ENTITY xorg-ati-driver-time          "0.2 SBU">
    1818]>
  • xsoft/other/fontforge.xml

    r594df26 r0f0774a  
    55  %general-entities;
    66
    7   <!ENTITY fontforge-download-http "https://github.com/fontforge/fontforge/releases/download/&fontforge-version;/fontforge-&fontforge-version;.tar.gz">
     7  <!ENTITY fontforge-download-http "https://github.com/fontforge/fontforge/releases/download/&fontforge-version;/fontforge-dist-&fontforge-version;.tar.gz">
    88  <!ENTITY fontforge-download-ftp  " ">
    9   <!ENTITY fontforge-md5sum        "74c49c73822d642b0511718d8eeb2210">
     9  <!ENTITY fontforge-md5sum        "db98d07cfee624c21d7d6ca37fe0ca14">
    1010  <!ENTITY fontforge-size          "20 MB">
    11   <!ENTITY fontforge-buildsize     "243 MB (without tests)">
    12   <!ENTITY fontforge-time          "1.5 SBU (without tests)">
     11  <!ENTITY fontforge-buildsize     "243 MB (plus an additional 1 MB for the tests)">
     12  <!ENTITY fontforge-time          "1.7 SBU (plus an additional 0.2 SBU for the tests)">
    1313]>
    1414
     
    119119    <title>Installation of FontForge</title>
    120120
     121    <note>
     122      <para>
     123        For this version there is a separate and much larger fontforge tarball
     124        without the -dist- in its name, do not try to use that. The -dist- version
     125        was created a few minutes later, but the version was typo'd and it will
     126        untar to fontforge-2.0-20140101.
     127      </para>
     128    </note>
     129
    121130    <para>
    122131      Install <application>FontForge</application> by running the following
     
    124133    </para>
    125134
    126 <screen><userinput>sed -i 's%naist.jp/pub/NetBSD/packages%netbsd.org/pub/pkgsrc%' \
    127   tests/Makefile.in &amp;&amp;
     135<screen><userinput>sed -i 's/20140101/20160404/g' configure inc/fontforge-config.h \
     136                               tests/package.m4 tests/testsuite
    128137./configure --prefix=/usr     \
    129138            --enable-gtk2-use \
     
    134143    <para>
    135144      To test the results, issue: <command>make check</command>.
     145      This will download two ttf files.
    136146    </para>
    137147
     
    142152<screen role="root"><userinput>make install</userinput></screen>
    143153
     154    <!-- seems to be ok now
    144155    <note>
    145156      <para>
     
    154165<screen role="root"><userinput>sed -e '/Exec/ s/fontforge/&amp; -new/' \
    155166    -i /usr/share/applications/fontforge.desktop</userinput></screen>
    156     </note>
     167    </note>-->
    157168
    158169  </sect2>
     
    162173
    163174    <para>
    164       <parameter>sed -i 's%naist.jp/pub/NetBSD/packages%netbsd.org/pub/pkgsrc%'</parameter>
    165       The tests get the MunhwaGothic-Bold font - it is no longer at that mirror,
    166       so use the primary NetBSD source.
    167     </para>
    168 
    169     <para>
    170       <parameter>--enable-gtk2-use</parameter>: allows to use the GTK+2 graphics
     175      <parameter>sed -i 's/20140101/20160404/g' ...</parameter> : This changes
     176      the typo'd date, particularly in the pkgconfig files and the log from the
     177      tests.
     178    </para>
     179
     180    <para>
     181      <parameter>--enable-gtk2-use</parameter>: uses the GTK+2 graphics
    171182      instead of basic Xorg graphics.
    172183    </para>
Note: See TracChangeset for help on using the changeset viewer.