Changeset 118b201


Ignore:
Timestamp:
05/01/2019 05:14:16 PM (5 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 9.0, 9.1, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
9533795
Parents:
963c713
Message:

Various fixes and nits:

  • gnome-calculator: fix building with vala-0.44.x
  • sendmail: don't use an unset variable
  • file-roller: separate install and configuration
  • xincludes: fix updating the icon cache and the desktop database

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

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • gnome/applications/file-roller.xml

    r963c713 r118b201  
    135135
    136136<screen role="root"><userinput>ninja install &amp;&amp;
    137 chmod -v 0755 /usr/libexec/file-roller/isoinfo.sh &amp;&amp;
    138 glib-compile-schemas /usr/share/glib-2.0/schemas</userinput></screen>
     137chmod -v 0755 /usr/libexec/file-roller/isoinfo.sh</userinput></screen>
    139138
    140 <!-- There is a possibilty that glib-compile-schemas needs to be run. -->
     139    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     140                href="../../xincludes/gsettings-destdir.xml"/>
     141
     142    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     143                href="../../xincludes/update-icons-and-desktop.xml"/>
    141144
    142145  </sect2>
  • gnome/applications/gnome-calculator.xml

    r963c713 r118b201  
    9898    <title>Installation of GNOME Calculator</title>
    9999
     100<!-- Should not be needed with next version -->
     101    <para>
     102      First apply an upstream fix to prevent a type mismatch flagged as an
     103      error by vala-0.44.x:
     104    </para>
     105
     106<screen><userinput>sed -e 's/token_list\.copy()/token_list.copy_deep((CopyFunc) Object.ref)/' \
     107    -i lib/equation-parser.vala</userinput></screen>
     108
    100109    <para>
    101110      Install <application>GNOME Calculator</application> by running
  • introduction/welcome/changelog.xml

    r963c713 r118b201  
    4646      <para>May 1st, 2019</para>
    4747      <itemizedlist>
     48        <listitem>
     49          <para>[pierre] - Fix the instructions for updating the icon cache
     50          and the desktop database.</para>
     51        </listitem>
     52        <listitem>
     53          <para>[pierre] - Fix building gnome-calculator with
     54          vala-0.44.x.</para>
     55        </listitem>
     56        <listitem>
     57          <para>[pierre] - Remove an unset variable in sendmail.</para>
     58        </listitem>
    4859        <listitem>
    4960          <para>[timtas] - Update to dovecot-2.3.6. Fixes
  • server/mail/sendmail.xml

    r963c713 r118b201  
    123123    commands:</para>
    124124
    125 <screen><userinput>patch -Np1 -i $DIR/sendmail.&sendmail-version;-openssl-1.patch &amp;&amp;
     125<screen><userinput>patch -Np1 -i ../sendmail.&sendmail-version;-openssl-1.patch &amp;&amp;
    126126
    127127cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
  • xincludes/gtk-update-icon-cache.xml

    r963c713 r118b201  
    1717      </para>
    1818
    19 <screen role="root"><userinput>gtk-update-icon-cache</userinput></screen>
     19<screen role="root"><userinput>gtk-update-icon-cache -qtf /usr/share/icons/hicolor</userinput></screen>
    2020    </note>
  • xincludes/update-desktop-database.xml

    r963c713 r118b201  
    1717      </para>
    1818
    19 <screen role="root"><userinput>update-desktop-database</userinput></screen>
     19<screen role="root"><userinput>update-desktop-database -q</userinput></screen>
    2020    </note>
  • xincludes/update-icons-and-desktop.xml

    r963c713 r118b201  
    2222      </para>
    2323
    24 <screen role="root"><userinput>gtk-update-icon-cache &amp;&amp;
    25 update-desktop-database</userinput></screen>
     24<screen role="root"><userinput>gtk-update-icon-cache -qtf /usr/share/icons/hicolor &amp;&amp;
     25update-desktop-database -q</userinput></screen>
    2626    </note>
Note: See TracChangeset for help on using the changeset viewer.