Changeset fc935fb


Ignore:
Timestamp:
01/03/2019 01:37:08 AM (5 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.4, 9.0, 9.1, bdubbs/svn, 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:
8991a7cb
Parents:
1486180
Message:

Update to exiv2-0.27.0. Fixe
Update to Text-CSV-1.99 (Perl Module).
Update to Unicode-Collate-1.27 (Perl Module).
Update to File-Which-1.23 (Perl Module).
Update to Unicode-LineBreak-2019.001 (Perl Module).

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

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • general/graphlib/exiv2.xml

    r1486180 rfc935fb  
    55  %general-entities;
    66
    7   <!ENTITY exiv2-download-http "http://www.exiv2.org/builds/exiv2-&exiv2-version;-trunk.tar.gz">
     7  <!ENTITY exiv2-download-http "http://www.exiv2.org/builds/exiv2-&exiv2-version;-Source.tar.gz">
    88  <!ENTITY exiv2-download-ftp  " ">
    9   <!ENTITY exiv2-md5sum        "5399e3b570d7f9205f0e76d47582da4c">
    10   <!ENTITY exiv2-size          "5.4 MB">
    11   <!ENTITY exiv2-buildsize     "39 MB">
    12   <!ENTITY exiv2-time          "1.2 SBU">
     9  <!ENTITY exiv2-md5sum        "57d58c9cef127c5fa24bf0e1fbbd1f8c">
     10  <!ENTITY exiv2-size          "26 MB">
     11  <!ENTITY exiv2-buildsize     "86 MB">
     12  <!ENTITY exiv2-time          "0.3 SBU (Using parallelism=4)">
    1313]>
    1414
     
    9898    <title>Installation of Exiv2</title>
    9999
     100    <para>First, disable building a sample program that fails:</para>
     101
     102<screen><userinput>sed -i '/conntest/s/^/#/' samples/CMakeLists.txt</userinput></screen>
     103
    100104    <para>
    101105      Install <application>Exiv2</application> by running the following
     
    103107    </para>
    104108
    105 <screen><userinput>./configure --prefix=/usr     \
    106             --enable-video    \
    107             --enable-webready \
    108             --without-ssh     \
    109             --disable-static  &amp;&amp;
    110 
     109<screen><userinput>mkdir build &amp;&amp;
     110cd    build &amp;&amp;
     111
     112cmake -DCMAKE_INSTALL_PREFIX=/usr  \
     113      -DCMAKE_BUILD_TYPE=Release   \
     114      -DEXIV2_ENABLE_VIDEO=yes     \
     115      -DEXIV2_ENABLE_WEBREADY=yes  \
     116      -DEXIV2_ENABLE_CURL=yes      \
     117      -DEXIV2_BUILD_SAMPLES=no     \
     118      -G "Unix Makefiles" .. &amp;&amp;
    111119make</userinput></screen>
    112120
     
    119127    </para>
    120128
    121 <screen role="root"><userinput>make install &amp;&amp;
    122 chmod -v 755 /usr/lib/libexiv2.so</userinput></screen>
     129<screen role="root"><userinput>make install</userinput></screen>
    123130
    124131  </sect2>
     
    128135
    129136    <para>
    130       <parameter>--enable-video</parameter>:
     137      <parameter>-DEXIV2_ENABLE_VIDEO=yes</parameter>:
    131138      This switch enables managing video metadata.
    132139    </para>
    133140
    134141    <para>
    135       <parameter>--enable-webready</parameter>:
     142      <parameter>-DEXIV2_ENABLE_WEBREADY=yes</parameter>:
    136143      This switch enables managing web image metadata.
    137144    </para>
    138145
    139146    <para>
    140       <parameter>--without-ssh</parameter>:
    141       This switch is necessary when webready is enabled and <ulink
    142       url="http://www.libssh.org/">libssh</ulink> is not installed. Libssh is
    143       required for ssh.
    144     </para>
    145 
    146     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    147       href="../../xincludes/static-libraries.xml"/>
    148 
    149     <para>
    150       <option>--without-curl</option>:
    151       This switch is necessary when webready is enabled and <xref
    152       linkend="curl"/> is not installed. Libcurl is required for http.
     147      <parameter>-DEXIV2_BUILD_SAMPLES=no</parameter>:
     148      This switch is necessary to suppress building and installing
     149      sample programs.  If the samle programs are built, 34 additional
     150      programs are installed in /usr/bin.
     151    </para>
     152
     153    <para>
     154      <parameter>-DEXIV2_ENABLE_CURL=yes</parameter>:
     155      This switch is necessary to enable network/http capabilities.
    153156    </para>
    154157
     
    161164      <segtitle>Installed Program</segtitle>
    162165      <segtitle>Installed Library</segtitle>
    163       <segtitle>Installed Directory</segtitle>
     166      <segtitle>Installed Directories</segtitle>
    164167
    165168      <seglistitem>
     
    168171        </seg>
    169172        <seg>
    170           libexiv2.so
     173          libexiv2.so and
     174          libxmp.a
    171175        </seg>
    172176        <seg>
    173           /usr/include/exiv2
     177          /usr/include/exiv2 and
     178          /usr/share/exiv2
    174179        </seg>
    175180      </seglistitem>
  • general/prog/perl-modules/perl-file-which.xml

    r1486180 rfc935fb  
    66
    77  <!ENTITY my-download-http "&perl_authors;/id/P/PL/PLICEASE/File-Which-&File-Which-version;.tar.gz">
    8   <!ENTITY my-md5sum "face60fafd220dc83fa581ef6f96d480">
     8  <!ENTITY my-md5sum "c8f054534c3c098dd7a0dada60aaae34">
    99
    1010]>
  • general/prog/perl-modules/perl-text-csv.xml

    r1486180 rfc935fb  
    66
    77  <!ENTITY my-download-http "&perl_authors;/id/I/IS/ISHIGAKI/Text-CSV-&Text-CSV-version;.tar.gz">
    8   <!ENTITY my-md5sum "06e9ff3c867fa5ba7f8793ae06ea73ac">
     8  <!ENTITY my-md5sum "f2d01a8a9d217dcc9dbe17be195898e3">
    99
    1010]>
  • general/prog/perl-modules/perl-unicode-collate.xml

    r1486180 rfc935fb  
    66
    77  <!ENTITY my-download-http "&perl_authors;/id/S/SA/SADAHIRO/Unicode-Collate-&Unicode-Collate-version;.tar.gz">
    8   <!ENTITY my-md5sum "b077a891392c02fcc26d3c9f7dfc1734">
     8  <!ENTITY my-md5sum "9affc3cfe915a1c4016d42e6d62a5f0e">
    99
    1010]>
  • general/prog/perl-modules/perl-unicode-linebreak.xml

    r1486180 rfc935fb  
    66
    77  <!ENTITY my-download-http "&perl_authors;/id/N/NE/NEZUMI/Unicode-LineBreak-&Unicode-LineBreak-version;.tar.gz">
    8   <!ENTITY my-md5sum "736dcb04f6a250bd28e4279f2b8592af">
     8  <!ENTITY my-md5sum "003d6da7a13700e069afed9238c864b9">
    99
    1010]>
  • introduction/welcome/changelog.xml

    r1486180 rfc935fb  
    4545      <para>January 2nd, 2019</para>
    4646      <itemizedlist>
     47        <listitem>
     48          <para>[bdubbs] - Update to exiv2-0.27.0. Fixe
     49          <ulink url="&blfs-ticket-root;11490">#11490</ulink>.</para>
     50        </listitem>
     51        <listitem>
     52          <para>[bdubbs] - Update to Text-CSV-1.99 (Perl Module). Fixes
     53          <ulink url="&blfs-ticket-root;11503">#11503</ulink>.</para>
     54        </listitem>
     55        <listitem>
     56          <para>[bdubbs] - Update to Unicode-Collate-1.27 (Perl Module). Fixes
     57          <ulink url="&blfs-ticket-root;11497">#11497</ulink>.</para>
     58        </listitem>
     59        <listitem>
     60          <para>[bdubbs] - Update to File-Which-1.23 (Perl Module). Fixes
     61          <ulink url="&blfs-ticket-root;11496">#11496</ulink>.</para>
     62        </listitem>
     63        <listitem>
     64          <para>[bdubbs] - Update to Unicode-LineBreak-2019.001 (Perl Module). Fixes
     65          <ulink url="&blfs-ticket-root;11493">#11493</ulink>.</para>
     66        </listitem>
    4767        <listitem revision="systemd">
    4868          <para>[renodr] - Update to gnome-backgrounds-3.30.0. Partially fixes
  • packages.ent

    r1486180 rfc935fb  
    200200<!ENTITY aalib-version                "1.4rc5">
    201201<!ENTITY babl-version                 "0.1.60">
    202 <!ENTITY exiv2-version                "0.26">
     202<!ENTITY exiv2-version                "0.27.0">
    203203<!ENTITY freetype2-version            "2.9.1">
    204204<!ENTITY fontconfig-version           "2.13.1">  <!-- stable lt .90 micro version -->
     
    385385<!--<!ENTITY File-BaseDir-version         "0.08">-->
    386386<!ENTITY File-Slurper-version         "0.012">
    387 <!ENTITY File-Which-version           "1.22">
     387<!ENTITY File-Which-version           "1.23">
    388388<!ENTITY HTML-Parser-version          "3.72">
    389389<!ENTITY HTTP-Daemon-version          "6.01">
     
    405405<!ENTITY Test-Differences-version     "0.64">
    406406<!ENTITY Text-BibTeX-version          "0.85">
    407 <!ENTITY Text-CSV-version             "1.97">
     407<!ENTITY Text-CSV-version             "1.98">
    408408<!ENTITY Text-Roman-version           "3.5">
    409 <!ENTITY Unicode-Collate-version      "1.25">
    410 <!ENTITY Unicode-LineBreak-version    "2018.003">
     409<!ENTITY Unicode-Collate-version      "1.27">
     410<!ENTITY Unicode-LineBreak-version    "2019.001">
    411411<!ENTITY URI-version                  "1.74">
    412412<!ENTITY XML-LibXML-Simple-version    "0.99">
Note: See TracChangeset for help on using the changeset viewer.