Changeset 3b9bfde


Ignore:
Timestamp:
05/01/2019 08:22:42 AM (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, 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:
b57de40
Parents:
568e425
Message:

Various fixes and one update:

  • tigervnc: bump server version to 1.20.4, fix instructions using undefined variables
  • DateTime::TimeZone (perl module dependency): remove spurious instructions
  • libreoffice: allow using system gpgme

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r568e425 r3b9bfde  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "30">                   <!-- Always 2 digits -->
    4 <!ENTITY month        "04">                   <!-- Always 2 digits -->
     3<!ENTITY day          "01">                   <!-- Always 2 digits -->
     4<!ENTITY month        "05">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2019">
    66<!ENTITY copyrightdate "2001-&year;">
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "April 30th, &year;">
     9<!ENTITY releasedate  "May 1st, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/prog/perl-deps/perl-datetime-timezone.xml

    r568e425 r3b9bfde  
    6868      <title>Installation of DateTime::TimeZone</title>
    6969
    70 <!-- which of the next instructions to use? -->
    7170      <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    7271                  href="../../../xincludes/perl-standard-install.xml"/>
    73 
    74       <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    75                   href="../../../xincludes/perl-build-install.xml"/>
    7672
    7773    </sect3>
  • introduction/welcome/changelog.xml

    r568e425 r3b9bfde  
    4242    </listitem>
    4343    -->
     44
     45    <listitem>
     46      <para>May 1st, 2019</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[pierre] - Remove spurious instructions in DateTime::TimeZone
     50          (perl module dependency).</para>
     51        </listitem>
     52        <listitem>
     53          <para>[pierre] - Update server version to 1.20.4 in tigervnc, and
     54          fix instructions that were using undefined variables.</para>
     55        </listitem>
     56        <listitem>
     57          <para>[pierre] - Add the --with-system-gpgmepp switch to libreoffice:
     58          fixes building with gawk-5.0, and allows using a system library
     59          instead of the bundled one.</para>
     60        </listitem>
     61      </itemizedlist>
     62    </listitem>
    4463
    4564    <listitem>
  • xsoft/office/libreoffice.xml

    r568e425 r3b9bfde  
    191191      <xref linkend="glm"/>,
    192192      <xref linkend="glu"/>,
     193      <xref linkend="gpgme"/>,
    193194      <xref linkend="graphite2"/>,
    194195      <xref linkend="gst10-plugins-base"/>,
     
    381382             --with-system-expat         \
    382383             --with-system-glm           \
     384             --with-system-gpgmepp       \
    383385             --with-system-graphite      \
    384386             --with-system-harfbuzz      \
  • xsoft/other/tigervnc.xml

    r568e425 r3b9bfde  
    1111  <!ENTITY tigervnc-buildsize     "94 MB">
    1212  <!ENTITY tigervnc-time          "1.3 SBU">
    13   <!ENTITY tigervnc-xorg-version  "1.20.0">
     13  <!ENTITY tigervnc-xorg-version  "1.20.4">
    1414]>
    1515
     
    107107
    108108<screen><userinput># Put code in place
    109 pushd unix/xserver &amp;&amp;
    110   tar -xf $DIR/xorg-server-$XORG_VER.tar.bz2 --strip-components=1 &amp;&amp;
    111   patch -Np1 -i ../xserver120.patch &amp;&amp;
    112 popd &amp;&amp;
     109tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 \
     110    --strip-components=1              \
     111    -C unix/xserver                   &amp;&amp;
     112( cd unix/xserver &amp;&amp;
     113  patch -Np1 -i ../xserver120.patch ) &amp;&amp;
    113114
    114115# Build viewer
     
    144145
    145146#Install server
    146 pushd unix/xserver/hw/vnc &amp;&amp;
    147   make install &amp;&amp;
    148 popd &amp;&amp;
     147( cd unix/xserver/hw/vnc &amp;&amp; make install ) &amp;&amp;
    149148
    150149[ -e /usr/bin/Xvnc ] || ln -svf $XORG_PREFIX/bin/Xvnc /usr/bin/Xvnc</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.