source: multimedia/libdriv/gavl.xml@ 0005499

trunk
Last change on this file since 0005499 was 3edfae5a, checked in by Bruce Dubbs <bdubbs@…>, 6 weeks ago

Fix gavl problems with gcc-14.

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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 gavl-download-http "&sourceforge-dl;/gmerlin/gavl-&gavl-version;.tar.gz">
8 <!ENTITY gavl-download-ftp " ">
9 <!ENTITY gavl-md5sum "2752013a817fbc43ddf13552215ec2c0">
10 <!ENTITY gavl-size "4.4 MB">
11 <!ENTITY gavl-buildsize "50 MB">
12 <!ENTITY gavl-time "0.8 SBU">
13]>
14
15<sect1 id="gavl" xreflabel="gavl-&gavl-version;">
16 <?dbhtml filename="gavl.html"?>
17
18
19 <title>gavl-&gavl-version;</title>
20
21 <indexterm zone="gavl">
22 <primary sortas="a-gavl">Gavl</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Gavl</title>
27
28 <para>
29 <application>Gavl</application> is short for Gmerlin Audio Video
30 Library. It is a low level library that handles the details of audio and
31 video formats like colorspaces, samplerates, multichannel configurations
32 etc. It provides standardized definitions for those formats as well as
33 container structures for carrying audio samples or video images inside an
34 application.
35 </para>
36
37 &lfs121_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&gavl-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&gavl-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &gavl-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &gavl-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &gavl-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &gavl-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">Gavl Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para>
77 <xref linkend='libpng'/>
78 </para>
79
80 <bridgehead renderas="sect4">Optional</bridgehead>
81 <para>
82 <xref linkend='doxygen'/>
83 </para>
84
85
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of Gavl</title>
90
91 <para>
92 First, fix an issue with gcc-14 and later:
93 </para>
94
95<screen><userinput>sed -i "/stdio/a #include &lt;string.h&gt;" src/fill_test.c</userinput></screen>
96
97 <para>
98 Now, install <application>Gavl</application> by running the
99 following commands:
100 </para>
101
102<screen><userinput>LIBS=-lm \
103./configure --prefix=/usr \
104 --without-doxygen \
105 --with-cpuflags=none \
106 --docdir=/usr/share/doc/gavl-&gavl-version; &amp;&amp;
107make</userinput></screen>
108
109 <para>
110 This package does not come with a test suite.
111 </para>
112
113 <para>
114 Now, as the <systemitem class="username">root</systemitem> user:
115 </para>
116
117<screen role="root"><userinput>make install</userinput></screen>
118
119 </sect2>
120
121 <sect2 role="commands">
122 <title>Command Explanations</title>
123
124 <para>
125 <envar>LIBS=-lm</envar>: This variable ensures the math library is
126 searched when linking.
127 </para>
128
129 <para>
130 <parameter>--without-doxygen</parameter>: This switch disables use of
131 Doxygen. Omit if Doxygen is installed and you wish to build the API
132 documentation.
133 </para>
134
135 <para>
136 <parameter>--with-cpuflags=none</parameter>: This switch fixes a problem
137 identifying capabilities of the system architecture.
138 </para>
139
140 </sect2>
141
142 <sect2 role="content">
143 <title>Contents</title>
144
145 <segmentedlist>
146 <segtitle>Installed Program</segtitle>
147 <segtitle>Installed Libraries</segtitle>
148 <segtitle>Installed Directories</segtitle>
149
150 <seglistitem>
151 <seg>None</seg>
152 <seg>libgavl.so</seg>
153 <seg>/usr/include/gavl and
154 /usr/share/doc/gavl-&gavl-version;
155 </seg>
156 </seglistitem>
157 </segmentedlist>
158
159 <variablelist>
160 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
161 <?dbfo list-presentation="list"?>
162 <?dbhtml list-presentation="table"?>
163
164 <varlistentry id="libgavl.so">
165 <term><filename class="libraryfile">libgavl.so</filename></term>
166 <listitem>
167 <para>
168 is the Gmerlin Audio Video Library
169 </para>
170 <indexterm zone="gavl libgavl.so">
171 <primary sortas="c-libgavl.so">libgavl.so</primary>
172 </indexterm>
173 </listitem>
174 </varlistentry>
175
176 </variablelist>
177
178 </sect2>
179
180</sect1>
Note: See TracBrowser for help on using the repository browser.