Author: pierre
Date: Wed May  1 01:22:42 2019
New Revision: 21529

Log:
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

Modified:
   trunk/BOOK/general.ent
   trunk/BOOK/general/prog/perl-deps/perl-datetime-timezone.xml
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/xsoft/office/libreoffice.xml
   trunk/BOOK/xsoft/other/tigervnc.xml

Modified: trunk/BOOK/general.ent
==============================================================================
--- trunk/BOOK/general.ent      Tue Apr 30 12:04:02 2019        (r21528)
+++ trunk/BOOK/general.ent      Wed May  1 01:22:42 2019        (r21529)
@@ -1,12 +1,12 @@
 <!-- $LastChangedBy$ $Date$ -->
 
-<!ENTITY day          "30">                   <!-- Always 2 digits -->
-<!ENTITY month        "04">                   <!-- Always 2 digits -->
+<!ENTITY day          "01">                   <!-- Always 2 digits -->
+<!ENTITY month        "05">                   <!-- Always 2 digits -->
 <!ENTITY year         "2019">
 <!ENTITY copyrightdate "2001-&year;">
 <!ENTITY copyholder   "The BLFS Development Team">
 <!ENTITY version      "&year;-&month;-&day;">
-<!ENTITY releasedate  "April 30th, &year;">
+<!ENTITY releasedate  "May 1st, &year;">
 <!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
 <!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
 <!ENTITY lfs-version  "development">          <!-- x.y|development -->

Modified: trunk/BOOK/general/prog/perl-deps/perl-datetime-timezone.xml
==============================================================================
--- trunk/BOOK/general/prog/perl-deps/perl-datetime-timezone.xml        Tue Apr 
30 12:04:02 2019        (r21528)
+++ trunk/BOOK/general/prog/perl-deps/perl-datetime-timezone.xml        Wed May 
 1 01:22:42 2019        (r21529)
@@ -67,13 +67,9 @@
     <sect3 role="installation">
       <title>Installation of DateTime::TimeZone</title>
 
-<!-- which of the next instructions to use? -->
       <xi:include xmlns:xi="http://www.w3.org/2001/XInclude";
                   href="../../../xincludes/perl-standard-install.xml"/>
 
-      <xi:include xmlns:xi="http://www.w3.org/2001/XInclude";
-                  href="../../../xincludes/perl-build-install.xml"/>
-
     </sect3>
 
   </sect2>

Modified: trunk/BOOK/introduction/welcome/changelog.xml
==============================================================================
--- trunk/BOOK/introduction/welcome/changelog.xml       Tue Apr 30 12:04:02 
2019        (r21528)
+++ trunk/BOOK/introduction/welcome/changelog.xml       Wed May  1 01:22:42 
2019        (r21529)
@@ -43,6 +43,25 @@
     -->
 
     <listitem>
+      <para>May 1st, 2019</para>
+      <itemizedlist>
+        <listitem>
+          <para>[pierre] - Remove spurious instructions in DateTime::TimeZone
+          (perl module dependency).</para>
+        </listitem>
+        <listitem>
+          <para>[pierre] - Update server version to 1.20.4 in tigervnc, and
+          fix instructions that were using undefined variables.</para>
+        </listitem>
+        <listitem>
+          <para>[pierre] - Add the --with-system-gpgmepp switch to libreoffice:
+          fixes building with gawk-5.0, and allows using a system library
+          instead of the bundled one.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>April 30th, 2019</para>
       <itemizedlist>
         <listitem>

Modified: trunk/BOOK/xsoft/office/libreoffice.xml
==============================================================================
--- trunk/BOOK/xsoft/office/libreoffice.xml     Tue Apr 30 12:04:02 2019        
(r21528)
+++ trunk/BOOK/xsoft/office/libreoffice.xml     Wed May  1 01:22:42 2019        
(r21529)
@@ -190,6 +190,7 @@
       <xref linkend="libjpeg"/>,
       <xref linkend="glm"/>,
       <xref linkend="glu"/>,
+      <xref linkend="gpgme"/>,
       <xref linkend="graphite2"/>,
       <xref linkend="gst10-plugins-base"/>,
       <xref linkend="gtk3"/> and
@@ -380,6 +381,7 @@
              --with-system-curl          \
              --with-system-expat         \
              --with-system-glm           \
+             --with-system-gpgmepp       \
              --with-system-graphite      \
              --with-system-harfbuzz      \
              --with-system-icu           \

Modified: trunk/BOOK/xsoft/other/tigervnc.xml
==============================================================================
--- trunk/BOOK/xsoft/other/tigervnc.xml Tue Apr 30 12:04:02 2019        (r21528)
+++ trunk/BOOK/xsoft/other/tigervnc.xml Wed May  1 01:22:42 2019        (r21529)
@@ -10,7 +10,7 @@
   <!ENTITY tigervnc-size          "1.4 MB">
   <!ENTITY tigervnc-buildsize     "94 MB">
   <!ENTITY tigervnc-time          "1.3 SBU">
-  <!ENTITY tigervnc-xorg-version  "1.20.0">
+  <!ENTITY tigervnc-xorg-version  "1.20.4">
 ]>
 
 <sect1 id="tigervnc" xreflabel="tigervnc-&tigervnc-version;">
@@ -106,10 +106,11 @@
     commands:</para>
 
 <screen><userinput># Put code in place
-pushd unix/xserver &amp;&amp;
-  tar -xf $DIR/xorg-server-$XORG_VER.tar.bz2 --strip-components=1 &amp;&amp;
-  patch -Np1 -i ../xserver120.patch &amp;&amp;
-popd &amp;&amp;
+tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 \
+    --strip-components=1              \
+    -C unix/xserver                   &amp;&amp;
+( cd unix/xserver &amp;&amp;
+  patch -Np1 -i ../xserver120.patch ) &amp;&amp;
 
 # Build viewer
 cmake -G "Unix Makefiles"         \
@@ -143,9 +144,7 @@
 make install &amp;&amp;
 
 #Install server
-pushd unix/xserver/hw/vnc &amp;&amp;
-  make install &amp;&amp;
-popd &amp;&amp;
+( cd unix/xserver/hw/vnc &amp;&amp; make install ) &amp;&amp;
 
 [ -e /usr/bin/Xvnc ] || ln -svf $XORG_PREFIX/bin/Xvnc 
/usr/bin/Xvnc</userinput></screen>
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to