source: general/graphlib/exiv2.xml@ af89b17

11.0 11.1 11.2 11.3 12.0 12.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
Last change on this file since af89b17 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 5.4 KB
RevLine 
[47969a6]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[c6b192c]7 <!ENTITY exiv2-download-http "https://www.exiv2.org/builds/exiv2-&exiv2-version;-Source.tar.gz">
[47969a6]8 <!ENTITY exiv2-download-ftp " ">
[c744d0a5]9 <!ENTITY exiv2-md5sum "68a59595e8617284b2e1eee528ae1f77">
10 <!ENTITY exiv2-size "25 MB">
11 <!ENTITY exiv2-buildsize "76 MB">
12 <!ENTITY exiv2-time "0.3 SBU (Using parallelism=4)">
[47969a6]13]>
14
[c627795]15<sect1 id="exiv2" xreflabel="Exiv2-&exiv2-version;">
[47969a6]16 <?dbhtml filename="exiv2.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>Exiv2-&exiv2-version;</title>
23
24 <indexterm zone="exiv2">
[c627795]25 <primary sortas="a-Exiv2">Exiv2</primary>
[47969a6]26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to Exiv2</title>
30
[c627795]31 <para>
[0d7900a]32 <application>Exiv2</application> is a C++ library and a command
[338015f]33 line utility for managing image and video metadata.
[c627795]34 </para>
[47969a6]35
[d437f756]36 &lfs101_checked;
[47969a6]37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
[c627795]41 <para>
42 Download (HTTP): <ulink url="&exiv2-download-http;"/>
43 </para>
[47969a6]44 </listitem>
45 <listitem>
[c627795]46 <para>
47 Download (FTP): <ulink url="&exiv2-download-ftp;"/>
48 </para>
[47969a6]49 </listitem>
50 <listitem>
[c627795]51 <para>
52 Download MD5 sum: &exiv2-md5sum;
53 </para>
[47969a6]54 </listitem>
55 <listitem>
[c627795]56 <para>
57 Download size: &exiv2-size;
58 </para>
[47969a6]59 </listitem>
60 <listitem>
[c627795]61 <para>
62 Estimated disk space required: &exiv2-buildsize;
63 </para>
[47969a6]64 </listitem>
65 <listitem>
[c627795]66 <para>
67 Estimated build time: &exiv2-time;
68 </para>
[47969a6]69 </listitem>
70 </itemizedlist>
71
[73fe507]72 <bridgehead renderas="sect3">Exiv2 dependencies</bridgehead>
73
[87cfb74]74 <bridgehead renderas="sect4">Required</bridgehead>
75 <para role="required">
76 <xref linkend="cmake"/>
77 </para>
78
[338015f]79 <bridgehead renderas="sect4">Recommended</bridgehead>
[87cfb74]80 <para role="recommended">
[338015f]81 <xref linkend="curl"/>
82 </para>
83
84 <bridgehead renderas="sect4">Optional</bridgehead>
85 <para role="optional">
86 <ulink url="http://www.libssh.org/">libssh</ulink>
87 </para>
88
89 <bridgehead renderas="sect4">Optional for documentation</bridgehead>
90 <para role="optional">
91 <xref linkend="doxygen"/>,
[60ddbaf]92 <xref linkend="graphviz"/>, and
[338015f]93 <xref linkend="libxslt"/>
94 </para>
95
[47969a6]96 <para condition="html" role="usernotes">User Notes:
[c627795]97 <ulink url="&blfs-wiki;/exiv2"/>
98 </para>
[47969a6]99 </sect2>
100
101 <sect2 role="installation">
102 <title>Installation of Exiv2</title>
[42a7d50]103<!--
[09f0998]104 <para>
105 First, disable building a sample program that fails:
106 </para>
[fc935fb]107
108<screen><userinput>sed -i '/conntest/s/^/#/' samples/CMakeLists.txt</userinput></screen>
[42a7d50]109-->
[c627795]110 <para>
111 Install <application>Exiv2</application> by running the following
112 commands:
113 </para>
[47969a6]114
[fc935fb]115<screen><userinput>mkdir build &amp;&amp;
116cd build &amp;&amp;
[338015f]117
[fc935fb]118cmake -DCMAKE_INSTALL_PREFIX=/usr \
119 -DCMAKE_BUILD_TYPE=Release \
120 -DEXIV2_ENABLE_VIDEO=yes \
121 -DEXIV2_ENABLE_WEBREADY=yes \
122 -DEXIV2_ENABLE_CURL=yes \
123 -DEXIV2_BUILD_SAMPLES=no \
124 -G "Unix Makefiles" .. &amp;&amp;
[47969a6]125make</userinput></screen>
126
[c627795]127 <para>
128 This package does not come with a test suite.
129 </para>
[47969a6]130
[c627795]131 <para>
132 Now, as the <systemitem class="username">root</systemitem> user:
133 </para>
[47969a6]134
[fc935fb]135<screen role="root"><userinput>make install</userinput></screen>
[47969a6]136
137 </sect2>
[c627795]138
[47969a6]139 <sect2 role="commands">
140 <title>Command Explanations</title>
141
[338015f]142 <para>
[fc935fb]143 <parameter>-DEXIV2_ENABLE_VIDEO=yes</parameter>:
[338015f]144 This switch enables managing video metadata.
145 </para>
146
147 <para>
[fc935fb]148 <parameter>-DEXIV2_ENABLE_WEBREADY=yes</parameter>:
[338015f]149 This switch enables managing web image metadata.
150 </para>
151
152 <para>
[fc935fb]153 <parameter>-DEXIV2_BUILD_SAMPLES=no</parameter>:
154 This switch is necessary to suppress building and installing
[22c91155]155 sample programs. If the sample programs are built, 34 additional
[fc935fb]156 programs are installed in /usr/bin.
[338015f]157 </para>
158
159 <para>
[fc935fb]160 <parameter>-DEXIV2_ENABLE_CURL=yes</parameter>:
161 This switch is necessary to enable network/http capabilities.
[338015f]162 </para>
163
[47969a6]164 </sect2>
[c627795]165
[47969a6]166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Program</segtitle>
[c627795]171 <segtitle>Installed Library</segtitle>
[fc935fb]172 <segtitle>Installed Directories</segtitle>
[47969a6]173
174 <seglistitem>
[c627795]175 <seg>
176 exiv2
177 </seg>
178 <seg>
[fc935fb]179 libexiv2.so and
[c744d0a5]180 libexiv2-xmp.a
[c627795]181 </seg>
[c3c56b2]182 <seg>
[c744d0a5]183 /usr/include/exiv2 <!--and
184 /usr/share/exiv2 -->
[c3c56b2]185 </seg>
[47969a6]186 </seglistitem>
187 </segmentedlist>
188
189 <variablelist>
190 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
191 <?dbfo list-presentation="list"?>
192 <?dbhtml list-presentation="table"?>
193
194 <varlistentry id="exiv2-prog">
195 <term><command>exiv2</command></term>
196 <listitem>
[c627795]197 <para>
[4c24eb0a]198 is a utility used to dump Exif data
[c627795]199 </para>
[47969a6]200 <indexterm zone="exiv2 exiv2-prog">
201 <primary sortas="b-exiv2">exiv2</primary>
202 </indexterm>
203 </listitem>
204 </varlistentry>
205
206 </variablelist>
207
208 </sect2>
209
210</sect1>
Note: See TracBrowser for help on using the repository browser.