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

File:
1 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>
Note: See TracChangeset for help on using the changeset viewer.