source: general/graphlib/exiv2.xml@ 45ab6c7

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 45ab6c7 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
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://www.exiv2.org/builds/exiv2-&exiv2-version;-Source.tar.gz">
8 <!ENTITY exiv2-download-ftp " ">
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)">
13]>
14
15<sect1 id="exiv2" xreflabel="Exiv2-&exiv2-version;">
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">
25 <primary sortas="a-Exiv2">Exiv2</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to Exiv2</title>
30
31 <para>
32 <application>Exiv2</application> is a C++ library and a command
33 line utility for managing image and video metadata.
34 </para>
35
36 &lfs101_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&exiv2-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&exiv2-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &exiv2-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &exiv2-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &exiv2-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &exiv2-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">Exiv2 dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Required</bridgehead>
75 <para role="required">
76 <xref linkend="cmake"/>
77 </para>
78
79 <bridgehead renderas="sect4">Recommended</bridgehead>
80 <para role="recommended">
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"/>,
92 <xref linkend="graphviz"/>, and
93 <xref linkend="libxslt"/>
94 </para>
95
96 <para condition="html" role="usernotes">User Notes:
97 <ulink url="&blfs-wiki;/exiv2"/>
98 </para>
99 </sect2>
100
101 <sect2 role="installation">
102 <title>Installation of Exiv2</title>
103<!--
104 <para>
105 First, disable building a sample program that fails:
106 </para>
107
108<screen><userinput>sed -i '/conntest/s/^/#/' samples/CMakeLists.txt</userinput></screen>
109-->
110 <para>
111 Install <application>Exiv2</application> by running the following
112 commands:
113 </para>
114
115<screen><userinput>mkdir build &amp;&amp;
116cd build &amp;&amp;
117
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;
125make</userinput></screen>
126
127 <para>
128 This package does not come with a test suite.
129 </para>
130
131 <para>
132 Now, as the <systemitem class="username">root</systemitem> user:
133 </para>
134
135<screen role="root"><userinput>make install</userinput></screen>
136
137 </sect2>
138
139 <sect2 role="commands">
140 <title>Command Explanations</title>
141
142 <para>
143 <parameter>-DEXIV2_ENABLE_VIDEO=yes</parameter>:
144 This switch enables managing video metadata.
145 </para>
146
147 <para>
148 <parameter>-DEXIV2_ENABLE_WEBREADY=yes</parameter>:
149 This switch enables managing web image metadata.
150 </para>
151
152 <para>
153 <parameter>-DEXIV2_BUILD_SAMPLES=no</parameter>:
154 This switch is necessary to suppress building and installing
155 sample programs. If the sample programs are built, 34 additional
156 programs are installed in /usr/bin.
157 </para>
158
159 <para>
160 <parameter>-DEXIV2_ENABLE_CURL=yes</parameter>:
161 This switch is necessary to enable network/http capabilities.
162 </para>
163
164 </sect2>
165
166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Program</segtitle>
171 <segtitle>Installed Library</segtitle>
172 <segtitle>Installed Directories</segtitle>
173
174 <seglistitem>
175 <seg>
176 exiv2
177 </seg>
178 <seg>
179 libexiv2.so and
180 libexiv2-xmp.a
181 </seg>
182 <seg>
183 /usr/include/exiv2 <!--and
184 /usr/share/exiv2 -->
185 </seg>
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>
197 <para>
198 is a utility used to dump Exif data
199 </para>
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.