source: general/graphlib/exiv2.xml@ 166f7822

12.0 12.1 12.2 gimp3 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/spidermonkey128 xry111/xf86-video-removal
Last change on this file since 166f7822 was 1e99ba7, checked in by Pierre Labastie <pierre.labastie@…>, 16 months ago

exiv2 uses external inih now

reported by r1c0n3r0 on #lfs-support

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