Changeset 87ff6f30


Ignore:
Timestamp:
12/19/2016 09:36:08 PM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, 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:
ab31930
Parents:
c6ea0bd
Message:

Add instructions to graphviz and cmake that avoid installing files in /usr/lib64.
Update to poppler-0.50.0
Update to libqmi-1.16.2

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

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libqmi.xml

    rc6ea0bd r87ff6f30  
    77  <!ENTITY libqmi-download-http "http://www.freedesktop.org/software/libqmi/libqmi-&libqmi-version;.tar.xz">
    88  <!ENTITY libqmi-download-ftp  " ">
    9   <!ENTITY libqmi-md5sum        "4970c110f160b33637a3515004c637b2">
     9  <!ENTITY libqmi-md5sum        "052318439128e428b1a41e75a605d91f">
    1010  <!ENTITY libqmi-size          "720 KB">
    11   <!ENTITY libqmi-buildsize     "73 MB (with tests)">
     11  <!ENTITY libqmi-buildsize     "48 MB (with tests)">
    1212  <!ENTITY libqmi-time          "0.4 SBU (with tests)">
    1313]>
  • general/genutils/graphviz.xml

    rc6ea0bd r87ff6f30  
    146146
    147147<screen><userinput>patch -Np1 -i ../graphviz-&graphviz-version;-consolidated_fixes-1.patch &amp;&amp;
     148
     149sed -i '/LIBPOSTFIX="64"/s/64//' configure.ac &amp;&amp;
     150
    148151autoreconf                               &amp;&amp;
    149152./configure --prefix=/usr --disable-php  &amp;&amp;
     
    176179  <sect2 role="commands">
    177180    <title>Command Explanations</title>
     181
     182    <para>
     183      <command>sed ... configure.ac</command>: This command is needed to
     184      avoid installing files in /usr/lib64.
     185    </para>
    178186
    179187    <para>
  • general/graphlib/poppler.xml

    rc6ea0bd r87ff6f30  
    77  <!ENTITY poppler-download-http "http://poppler.freedesktop.org/poppler-&poppler-version;.tar.xz">
    88  <!ENTITY poppler-download-ftp       " ">
    9   <!ENTITY poppler-md5sum             "9e057ed8eee1f9979fa75d8f044783b8">
     9  <!ENTITY poppler-md5sum             "1a4c0cd873bddd8f266b85ab8d799962">
    1010  <!ENTITY poppler-size               "1.6 MB">
    1111  <!ENTITY poppler-buildsize          "49 MB (with Qt5 library)">
     
    170170    </para>
    171171
    172 <screen><userinput>./configure --prefix=/usr               \
     172<!-- Note: the sed is needed even if the /usr/lib64 symlink is not present -->
     173
     174<screen><userinput>sed -i "/was moved/s/^/#/" ltmain.sh &amp;&amp;
     175
     176./configure --prefix=/usr               \
    173177            --sysconfdir=/etc           \
    174178            --disable-static            \
     
    225229  <sect2 role="commands">
    226230    <title>Command Explanations</title>
     231
     232    <para>
     233      <command>sed ... ltmain.sh</command>: This command removes a lot
     234      of irritating invalid warnings.
     235    </para>
    227236
    228237    <para>
  • general/prog/cmake.xml

    rc6ea0bd r87ff6f30  
    112112    </para>
    113113
    114 <screen><userinput>sed -i '/CMAKE_USE_LIBUV 1/s/1/0/' CMakeLists.txt &amp;&amp;
     114<screen><userinput>sed -i '/CMAKE_USE_LIBUV 1/s/1/0/' CMakeLists.txt     &amp;&amp;
     115sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake &amp;&amp;
    115116
    116117./bootstrap --prefix=/usr       \
     
    153154      <command>sed ... CMakeLists.txt</command>: This command
    154155      disables the attempt to use the external libuv library.
     156    </para>
     157
     158    <para>
     159      <command>sed ... Modules/GNUInstallDirs.cmake</command>:
     160      This command disables applications using cmake from attempting to
     161      install files in /usr/lib64/.
    155162    </para>
    156163
  • general/prog/perl-modules.xml

    rc6ea0bd r87ff6f30  
    12591259    <bridgehead renderas="sect3" id="perl-log-log4perl"
    12601260    xreflabel="Log::Log4perl-&Log-Log4perl-version;">
    1261     Log-Log4perl-&Log-Log4perl-version;</bridgehead>
     1261    Log::Log4perl-&Log-Log4perl-version;</bridgehead>
    12621262
    12631263    <indexterm zone="perl-modules perl-log-log4perl">
     
    12651265    </indexterm>
    12661266
    1267     <para>Log-Log4perl provides a Log4j implementation for
     1267    <para>Log::Log4perl provides a Log4j implementation for
    12681268    <application>perl</application>. This module uses the
    12691269    standard <xref linkend="perl-standard-install"/>.</para>
  • introduction/welcome/changelog.xml

    rc6ea0bd r87ff6f30  
    4646      <para>December 19th, 2016</para>
    4747      <itemizedlist>
     48        <listitem>
     49          <para>[bdubbs] - Add instructions to graphviz and cmake that
     50          avoid installing files in /usr/lib64. </para>
     51        </listitem>
     52        <listitem>
     53          <para>[bdubbs] - Update to poppler-0.50.0. Fixes
     54          <ulink url="&blfs-ticket-root;8646">#8646</ulink>.</para>
     55        </listitem>
     56        <listitem>
     57          <para>[bdubbs] - Update to libqmi-1.16.2. Fixes
     58          <ulink url="&blfs-ticket-root;8514">#8514</ulink>.</para>
     59        </listitem>
    4860        <listitem revision="systemd">
    4961          <para>[renodr] - Update to colord-1.3.4. Fixes
  • packages.ent

    rc6ea0bd r87ff6f30  
    137137<!ENTITY libnfsidmap-version          "0.26">
    138138<!ENTITY libpaper-version             "1.1.24+nmu5">
    139 <!ENTITY libqmi-version               "1.16.0">
     139<!ENTITY libqmi-version               "1.16.2">
    140140<!ENTITY libsigc-version              "2.10.0">
    141141<!ENTITY libsigsegv-version           "2.10">
     
    199199<!ENTITY openjpeg2-version            "2.1.2">
    200200<!ENTITY pixman-version               "0.34.0">   <!-- Even minors only -->
    201 <!ENTITY poppler-version              "0.49.0">
     201<!ENTITY poppler-version              "0.50.0">
    202202<!ENTITY qpdf-version                 "6.0.0">
    203203
  • x/installing/xorg7.xml

    rc6ea0bd r87ff6f30  
    156156pathappend $XORG_PREFIX/include         CPLUS_INCLUDE_PATH
    157157
    158 ACLOCAL='aclocal -I $XORG_PREFIX/share/aclocal'
     158ACLOCAL="aclocal -I $XORG_PREFIX/share/aclocal"
    159159
    160160export PATH PKG_CONFIG_PATH ACLOCAL LIBRARY_PATH C_INCLUDE_PATH CPLUS_INCLUDE_PATH
     
    189189
    190190<screen role="root"><userinput>ln -sf $XORG_PREFIX /usr/X11R6</userinput></screen>
    191 
     191<!--
    192192    <para>Finally, if building on x86_64, you will need to create the
    193193    <filename class="directory">$XORG_PREFIX/lib</filename> directory and the
     
    199199install -v -m755 -d $XORG_PREFIX/lib &amp;&amp;
    200200ln -sf lib $XORG_PREFIX/lib64</userinput></screen>
    201 
     201-->
    202202  </sect2>
    203203
Note: See TracChangeset for help on using the changeset viewer.