source: archive/opal.xml@ 060c752c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 060c752c was 7788630d, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Archive midori.
Archive opal and ekiga.
Update xterm to install .desktop files.
Update plasma to properly link to .desktop file.
Finish tagging postlfs files.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@20390 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • 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 opal-download-http "&gnome-download-http;/opal/3.10/opal-&opal-version;.tar.xz">
8 <!ENTITY opal-download-ftp "&gnome-download-ftp;/opal/3.10/opal-&opal-version;.tar.xz">
9 <!ENTITY opal-md5sum "6efa1b4c5e0ad6460019b4c6df0898d7">
10 <!ENTITY opal-size "5.7 MB">
11 <!ENTITY opal-buildsize "305 MB">
12 <!ENTITY opal-time "2.0 SBU">
13]>
14
15<sect1 id="opal" xreflabel="Opal-&opal-version;">
16 <?dbhtml filename="opal.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Opal-&opal-version;</title>
24
25 <indexterm zone="opal">
26 <primary sortas="a-Opal">Opal</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Opal</title>
31
32 <para>
33 The <application>Opal</application> package contains a C++ class library for
34 normalising the numerous telephony protocols into a single integrated call
35 model.
36 </para>
37
38 &lfs82_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&opal-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&opal-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &opal-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &opal-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &opal-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &opal-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
75 <itemizedlist spacing="compact">
76 <listitem>
77 <para>
78 Required patch:
79 <ulink url="&patch-root;/opal-&opal-version;-ffmpeg2-1.patch"/>
80 </para>
81 </listitem>
82 </itemizedlist>
83
84 <bridgehead renderas="sect3">Opal Dependencies</bridgehead>
85
86 <bridgehead renderas="sect4">Required</bridgehead>
87 <para role="required">
88 <xref linkend="ptlib"/>
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <ulink url="http://www.celt-codec.org/">Celt</ulink>,
94 <xref linkend="ffmpeg"/>,
95 <ulink url="http://www.quut.com/gsm/">GSM</ulink>,
96 <ulink url="http://www.isdn4linux.de/">ISDN4Linux</ulink>,
97 <xref linkend="libtheora"/>,
98 <xref linkend="openjdk"/>,
99 <xref linkend="ruby"/>,
100 <ulink url="http://www.soft-switch.org/">Spandsp</ulink>,
101 <xref linkend="speex"/>, and
102 <xref linkend="x264"/>
103 </para>
104
105 <para condition="html" role="usernotes">User Notes:
106 <ulink url="&blfs-wiki;/opal"/>
107 </para>
108 </sect2>
109
110 <sect2 role="installation">
111 <title>Installation of Opal</title>
112
113 <para>Fix a build issue with <application>GCC-7.1</application>:</para>
114
115<screen><userinput>sed -i 's| abs(| std::fabs(|g' plugins/video/common/mpi.cxx</userinput></screen>
116
117 <para>Install <application>Opal</application> by running the following
118 commands:</para>
119
120<screen><userinput>patch -Np1 -i ../opal-&opal-version;-ffmpeg2-1.patch &amp;&amp;
121
122sed -e 's/CODEC_ID/AV_&amp;/' \
123 -e 's/PIX_FMT_/AV_&amp;/' \
124 -i plugins/video/H.263-1998/h263-1998.cxx \
125 plugins/video/common/dyna.cxx \
126 plugins/video/H.264/h264-x264.cxx \
127 plugins/video/MPEG4-ffmpeg/mpeg4.cxx &amp;&amp;
128
129sed -e '/&lt;&lt; mime.PrintContents/ s/mime/(const std::string\&amp;)&amp;/' \
130 -i src/im/msrp.cxx &amp;&amp;
131
132sed -e '/abs(/s/MPI.*)/(int)(&amp;)/' \
133 -i ./plugins/video/common/mpi.cxx &amp;&amp;
134
135
136./configure --prefix=/usr &amp;&amp;
137CXXFLAGS=-Wno-deprecated-declarations make</userinput></screen>
138
139 <para>
140 This package does not come with a test suite.
141 </para>
142
143 <para>
144 Now, as the <systemitem class="username">root</systemitem> user:
145 </para>
146
147<screen role="root"><userinput>make install &amp;&amp;
148chmod -v 644 /usr/lib/libopal_s.a</userinput></screen>
149
150 </sect2>
151
152 <sect2 role="commands">
153 <title>Command Explanations</title>
154
155 <para>
156 <command>sed ...</command>: The first sed fixes several files
157 to work properly with <xref linkend='ffmpeg'/>. The second and
158 third fixes build issues with <xref linkend='gcc'/>.
159 </para>
160
161 <para>
162 <envar>CXXFLAGS=-Wno-deprecated-declarations</envar>: This parameter
163 reduces a lot of warnings generated by <xref linkend='gcc'/>.
164 </para>
165
166 </sect2>
167
168 <sect2 role="content">
169 <title>Contents</title>
170
171 <segmentedlist>
172 <segtitle>Installed Programs</segtitle>
173 <segtitle>Installed Libraries</segtitle>
174 <segtitle>Installed Directories</segtitle>
175
176 <seglistitem>
177 <seg>
178 None
179 </seg>
180 <seg>
181 libopal.so and libopal_s.a
182 </seg>
183 <seg>
184 /usr/include/opal and
185 /usr/lib/opal-&opal-version;
186 </seg>
187 </seglistitem>
188 </segmentedlist>
189
190 <variablelist>
191 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
192 <?dbfo list-presentation="list"?>
193 <?dbhtml list-presentation="table"?>
194
195 <varlistentry id="libopal">
196 <term><filename class="libraryfile">libopal.so</filename></term>
197 <listitem>
198 <para>
199 contains the <application>Opal</application> API functions.
200 </para>
201 <indexterm zone="opal libopal">
202 <primary sortas="c-libopal">libopal.so</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 </variablelist>
208
209 </sect2>
210
211</sect1>
Note: See TracBrowser for help on using the repository browser.