source: general/graphlib/jasper.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 af89b17, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Update to jasper-2.0.32

  • Property mode set to 100644
File size: 6.6 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 jasper-download-http "https://github.com/jasper-software/jasper/archive/version-&jasper-version;/jasper-&jasper-version;.tar.gz">
8 <!ENTITY jasper-download-ftp " ">
9 <!ENTITY jasper-md5sum "2c6017d275146f8792fa448227a7c373">
10 <!ENTITY jasper-size "1.3 MB">
11 <!ENTITY jasper-buildsize "6.6 MB (with tests)">
12 <!ENTITY jasper-time "0.2 SBU (with tests)">
13]>
14
15<sect1 id="jasper" xreflabel="JasPer-&jasper-version;">
16 <?dbhtml filename="jasper.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>JasPer-&jasper-version;</title>
23
24 <indexterm zone="jasper">
25 <primary sortas="a-jasper-&jasper-version;">JasPer</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to JasPer</title>
30
31 <para>
32 The <application>JasPer</application> Project is an open-source
33 initiative to provide a free software-based reference implementation
34 of the JPEG-2000 codec.
35 </para>
36
37 &lfs101_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&jasper-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&jasper-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &jasper-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &jasper-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &jasper-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &jasper-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">JasPer Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="cmake"/>
78 </para>
79
80 <bridgehead renderas="sect4">Recommended</bridgehead>
81 <para role="recommended">
82 <xref linkend="libjpeg"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="freeglut"/> (required for <command>jiv</command>),
88 <xref linkend="doxygen"/> (needed for generating html documentation), and
89 <xref linkend="texlive"/> (needed to regnerate the pdf documentation)
90 </para>
91
92 <para condition="html" role="usernotes">User Notes:
93 <ulink url="&blfs-wiki;/jasper"/></para>
94
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of JasPer</title>
99
100 <note>
101 <para>
102 The tarball <emphasis>jasper-&jasper-version;.tar.gz</emphasis> will
103 extract to
104 <emphasis>jasper-version-&jasper-version;</emphasis>.
105 </para>
106 </note>
107
108 <para>
109 Install <application>JasPer</application> by running the following
110 commands:
111 </para>
112
113<screen><userinput>mkdir BUILD &amp;&amp;
114cd BUILD &amp;&amp;
115
116cmake -DCMAKE_INSTALL_PREFIX=/usr \
117 -DCMAKE_BUILD_TYPE=Release \
118 -DCMAKE_SKIP_INSTALL_RPATH=YES \
119 -DJAS_ENABLE_DOC=NO \
120 -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/jasper-&jasper-version; \
121 .. &amp;&amp;
122make</userinput></screen>
123
124 <para>
125 To test the results, issue: <command>make test</command>.
126 </para>
127
128 <para>
129 Now, as the <systemitem class="username">root</systemitem> user:
130 </para>
131
132<screen role="root"><userinput>make install</userinput></screen>
133
134 </sect2>
135
136 <sect2 role="commands">
137 <title>Command Explanations</title>
138
139 <para>
140 <parameter>-DCMAKE_SKIP_INSTALL_RPATH=YES</parameter>: This option
141 removes embedded library search paths.
142 </para>
143
144 <para>
145 <parameter>-DJAS_ENABLE_DOC=NO</parameter>: This option disables
146 rebuilding the pdf documentation if <xref linkend="texlive"/>
147 is installed.
148 </para>
149
150 </sect2>
151
152 <sect2 role="content">
153 <title>Contents</title>
154
155 <segmentedlist>
156 <segtitle>Installed Programs</segtitle>
157 <segtitle>Installed Library</segtitle>
158 <segtitle>Installed Directories</segtitle>
159
160 <seglistitem>
161 <seg>imgcmp, imginfo, jasper, and jiv</seg>
162 <seg>libjasper.so</seg>
163 <seg>/usr/include/jasper and /usr/share/doc/jasper-&jasper-version;</seg>
164 </seglistitem>
165 </segmentedlist>
166
167 <variablelist>
168 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
169 <?dbfo list-presentation="list"?>
170 <?dbhtml list-presentation="table"?>
171
172 <varlistentry id="imgcmp">
173 <term><command>imgcmp</command></term>
174 <listitem>
175 <para>
176 compares two images of the same geometry
177 </para>
178 <indexterm zone="jasper imgcmp">
179 <primary sortas="b-imgcmp">imgcmp</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="imginfo">
185 <term><command>imginfo</command></term>
186 <listitem>
187 <para>
188 displays information about an image
189 </para>
190 <indexterm zone="jasper imginfo">
191 <primary sortas="b-imginfo">imginfo</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 <varlistentry id="jasper-command">
197 <term><command>jasper</command></term>
198 <listitem>
199 <para>
200 converts images between formats (BMP, JPS, JPC, JPG, PGX, PNM, MIF,
201 and RAS)
202 </para>
203 <indexterm zone="jasper jasper">
204 <primary sortas="b-jasper">jasper</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 <varlistentry id="jiv">
210 <term><command>jiv</command></term>
211 <listitem>
212 <para>
213 displays images
214 </para>
215 <indexterm zone="jasper jiv">
216 <primary sortas="b-jiv">jiv</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="jasper-lib">
222 <term><filename class="libraryfile">libjasper.so</filename></term>
223 <listitem>
224 <para>
225 is a library used by programs for reading and writing
226 JPEG2000 format files
227 </para>
228 <indexterm zone="jasper jasper-lib">
229 <primary sortas="c-libjasper">libjasper.so</primary>
230 </indexterm>
231 </listitem>
232 </varlistentry>
233
234 </variablelist>
235
236 </sect2>
237
238</sect1>
Note: See TracBrowser for help on using the repository browser.