Changeset d45a9e69


Ignore:
Timestamp:
03/29/2015 04:40:08 PM (9 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.8, 7.9, 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:
d0f4f31
Parents:
d983952
Message:

Aspell-0.60.6.1: tweaks.
Enchant-1.6.0: disable-static, fixes and tweaks.
Update to Gedit-3.16.0. Partially fixes #6311.

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/aspell.xml

    rd983952 rd45a9e69  
    66
    77  <!ENTITY aspell-download-http
    8     "http://ftp.gnu.org/gnu/aspell/aspell-&aspell-version;.tar.gz">
     8    "https://ftp.gnu.org/gnu/aspell/aspell-&aspell-version;.tar.gz">
    99  <!ENTITY aspell-download-ftp
    1010    "ftp://ftp.gnu.org/gnu/aspell/aspell-&aspell-version;.tar.gz">
     
    8484      <listitem>
    8585        <para>
    86           Aspell dictionaries: <ulink url="ftp://ftp.gnu.org/gnu/aspell/dict"/>
     86          Aspell dictionaries: <ulink url="https://ftp.gnu.org/gnu/aspell/dict"/>
    8787        </para>
    8888      </listitem>
     
    121121
    122122<screen role="root"><userinput>make install &amp;&amp;
     123ln -svfn aspell-0.60 /usr/lib/aspell &amp;&amp;
     124
    123125install -v -m755 -d /usr/share/doc/aspell-&aspell-version;/aspell{,-dev}.html &amp;&amp;
    124126
     
    144146 </sect2>
    145147
    146  <!-- <sect2 role="commands">
     148 <sect2 role="commands">
    147149    <title>Command Explanations</title>
    148150
    149     <para>
    150       <command>make -C manual pdf</command>: This command is listed twice as the
    151       first time it runs it will display an error and abort, although it creates
    152       the requested file. Running the command again ensures the other file is
    153       also created.
    154     </para>
    155   </sect2> -->
     151<!--    <para>
     152      <command>make -C manual pdf</command>: This command is listed twice as
     153      the first time it runs it will display an error and abort, although it
     154      creates the requested file. Running the command again ensures the other
     155      file is also created.
     156    </para>
     157    -->
     158    <para>
     159      <command>ln -svfn aspell-0.60 /usr/lib/aspell</command>: This command is
     160      useful for configuration of other applications, such as
     161      <xref linkend="enchant"/>.
     162    </para>
     163  </sect2>
    156164
    157165  <sect2 role="configuration">
  • general/genlib/enchant.xml

    rd983952 rd45a9e69  
    88  <!ENTITY enchant-download-ftp  "ftp://ftp.netbsd.org/pub/pkgsrc/distfiles/enchant-&enchant-version;.tar.gz">
    99  <!ENTITY enchant-md5sum        "de11011aff801dc61042828041fb59c7">
    10   <!ENTITY enchant-size          "593 KB">
    11   <!ENTITY enchant-buildsize     "17 MB">
    12   <!ENTITY enchant-time          "0.3 SBU">
     10  <!ENTITY enchant-size          "596 KB">
     11  <!ENTITY enchant-buildsize     "11 MB">
     12  <!ENTITY enchant-time          "0.1 SBU">
    1313]>
    1414
     
    8282    commands:</para>
    8383
    84 <screen><userinput>./configure --prefix=/usr &amp;&amp;
     84<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
    8585make</userinput></screen>
    8686
     
    9090
    9191<screen role="root"><userinput>make install</userinput></screen>
     92
     93  </sect2>
     94
     95  <sect2 role="commands">
     96    <title>Command Explanations</title>
     97
     98    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     99      href="../../xincludes/static-libraries.xml"/>
    92100
    93101  </sect2>
     
    113121    <sect3><title>Configuration Information</title>
    114122
    115       <para>See more details in the enchant(1) manual page.</para>
     123      <para>
     124        If you whish to use the <xref linkend="aspell"/> backend, create a
     125        symlink, as the <systemitem class="username">root</systemitem> user:
     126      </para>
     127
     128<screen role="root"><userinput>ln -svfn ../../lib/aspell /usr/share/enchant/aspell</userinput></screen>
     129
     130      <para>
     131        You can test your installation and configuration by creating a test
     132        file and running the commands:
     133      </para>
     134
     135<screen><userinput>cat &gt; /tmp/test-enchant.txt &lt;&lt; "EOF" &amp;&amp;
     136<literal>Tel me more abot linux
     137Ther ar so many commads</literal>
     138EOF
     139
     140enchant -d en_GB -l /tmp/test-enchant.txt &amp;&amp;
     141enchant -d en_GB -a /tmp/test-enchant.txt</userinput></screen>
     142
     143      <para>
     144        where you can replace the dictionary for en_GB by any other you
     145        downloaded (find the instructions earlier in the present page). You
     146        will see a list of the misspelled words followed by a list of
     147        alternatives for them. See more details in the enchant manual page.
     148      </para>
    116149
    117150    </sect3>
     
    129162      <seglistitem>
    130163        <seg>enchant and enchant-lsmod</seg>
    131         <seg>libenchant.{so,a} and various backend libraries</seg>
    132         <seg>/usr/{include/enchant,lib/enchant,share/enchant}</seg>
     164        <seg>libenchant.so and various backend libraries</seg>
     165        <seg>/usr/{include,lib,share}/enchant</seg>
    133166      </seglistitem>
    134167    </segmentedlist>
  • gnome.ent

    rd983952 rd45a9e69  
    4040<!ENTITY evince-version               "3.16.0">
    4141<!ENTITY file-roller-version          "3.14.2">
    42 <!ENTITY gedit-version                "3.14.3">
     42<!ENTITY gedit-version                "3.16.0">
    4343<!ENTITY gnome-calculator-version     "3.14.1">
    4444<!ENTITY gnome-nettool-version        "3.8.1">
  • gnome/applications/gedit.xml

    rd983952 rd45a9e69  
    55  %general-entities;
    66
    7   <!ENTITY gedit-download-http "&gnome-download-http;/gedit/&gnome-minor-14;/gedit-&gedit-version;.tar.xz">
    8   <!ENTITY gedit-download-ftp  "&gnome-download-ftp;/gedit/&gnome-minor-14;/gedit-&gedit-version;.tar.xz">
    9   <!ENTITY gedit-md5sum        "267beb4476f48a106fb693bb55819caf">
     7  <!ENTITY gedit-download-http "&gnome-download-http;/gedit/&gnome-minor-16;/gedit-&gedit-version;.tar.xz">
     8  <!ENTITY gedit-download-ftp  "&gnome-download-ftp;/gedit/&gnome-minor-16;/gedit-&gedit-version;.tar.xz">
     9  <!ENTITY gedit-md5sum        "661468539440b7b4f94dd285d7969442">
    1010  <!ENTITY gedit-size          "2.8 MB">
    11   <!ENTITY gedit-buildsize     "87 MB">
    12   <!ENTITY gedit-time          "1.1 SBU">
     11  <!ENTITY gedit-buildsize     "93 MB">
     12  <!ENTITY gedit-time          "0.9 SBU">
    1313]>
    1414
  • introduction/welcome/changelog.xml

    rd983952 rd45a9e69  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[fernando] - Update to Gedit-3.16.0. Partially fixes
     52          <ulink url="&blfs-ticket-root;6311">#6311</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[fernando] - Enchant-1.6.0: disable-static, fixes
     56          and tweaks.</para>
     57        </listitem>
     58        <listitem>
     59          <para>[fernando] - Aspell-0.60.6.1: tweaks.</para>
     60        </listitem>
     61        <listitem>
    5162          <para>[pierre] - Update to Mesa-10.5.2. Fixes
    5263          <ulink url="&blfs-ticket-root;6340">#6340</ulink>.</para>
Note: See TracChangeset for help on using the changeset viewer.