source: multimedia/libdriv/libtheora.xml@ 1ce810f4

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 1ce810f4 was 1ce810f4, checked in by Igor Živković <igor@…>, 11 years ago

Disable static libtheora libs.

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

  • Property mode set to 100644
File size: 5.1 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 libtheora-download-http "http://downloads.xiph.org/releases/theora/libtheora-&libtheora-version;.tar.bz2">
8 <!ENTITY libtheora-download-ftp " ">
9 <!ENTITY libtheora-md5sum "292ab65cedd5021d6b7ddd117e07cd8e">
10 <!ENTITY libtheora-size "1.85 MB">
11 <!ENTITY libtheora-buildsize "13.4 MB (without static libs or API docs and without installing the examples)">
12 <!ENTITY libtheora-time "0.2 SBU">
13]>
14
15<sect1 id="libtheora" xreflabel="libtheora-&libtheora-version;">
16 <?dbhtml filename="libtheora.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libtheora-&libtheora-version;</title>
24
25 <indexterm zone="libtheora">
26 <primary sortas="a-Libtheora">Libtheora</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libtheora</title>
31
32 <para>Theora is a free and open video compression format.</para>
33
34 &lfs73_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&libtheora-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&libtheora-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &libtheora-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &libtheora-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &libtheora-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &libtheora-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">libtheora Dependencies</bridgehead>
59
60 <bridgehead renderas="sect4">Required</bridgehead>
61 <para role="required"><xref linkend="libogg"/></para>
62
63 <bridgehead renderas="sect4">Recommended</bridgehead>
64 <para role="recommended"><xref linkend="libvorbis"/></para>
65
66 <bridgehead renderas="sect4">Optional</bridgehead>
67 <para role="optional"><xref linkend="sdl"/> and
68 <xref linkend="libpng"/> (both to build the example players),
69 <xref linkend="doxygen"/>,
70 <xref linkend="texlive"/>,
71 <ulink url="http://bibtexml.sourceforge.net">BibTex</ulink>, and
72 <ulink url="http://www.xfig.org/">Transfig</ulink>
73 (all four to build the API documentation),
74 <ulink url="http://www.valgrind.org">Valgrind</ulink></para>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url='&blfs-wiki;/Libtheora'/></para>
78
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of libtheora</title>
83
84 <para>Install <application>libtheora</application> by running the following
85 commands:</para>
86
87<screen><userinput>sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c &amp;&amp;
88./configure --prefix=/usr --disable-static &amp;&amp;
89make</userinput></screen>
90
91 <para>If you wish to run the tests, issue: <command>make check</command>.</para>
92
93 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
94
95<screen role="root"><userinput>make install</userinput></screen>
96
97 <para>If you built the examples and wish to install them (so that you can hack on
98 <literal>theora</literal>):</para>
99
100<screen role="root"><userinput>cd examples/.libs &amp;&amp;
101for E in *; do
102install -v -m755 $E /usr/bin/theora_${E}; done</userinput></screen>
103
104 </sect2>
105
106 <sect2 role="commands">
107 <title>Command Explanations</title>
108
109 <para>
110 <command>sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c</command>:
111 This <command>sed</command> fixes build with
112 <application>libpng</application> 1.6.
113 </para>
114
115 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
116 href="../../xincludes/static-libraries.xml"/>
117
118 </sect2>
119
120 <sect2 role="content">
121 <title>Contents</title>
122
123 <segmentedlist>
124 <segtitle>Installed Programs</segtitle>
125 <segtitle>Installed Libraries</segtitle>
126 <segtitle>Installed Directories</segtitle>
127
128 <seglistitem>
129 <seg>None, unless you installed the examples</seg>
130 <seg>libtheora.so, libtheoraenc.so, and
131 libtheoradec.so</seg>
132 <seg>/usr/include/theora and /usr/share/doc/libtheora-&libtheora-version;</seg>
133 </seglistitem>
134 </segmentedlist>
135
136 <variablelist>
137 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
138 <?dbfo list-presentation="list"?>
139 <?dbhtml list-presentation="table"?>
140
141 <varlistentry id="libtheora-lib">
142 <term><filename class='libraryfile'>libtheora*.so</filename></term>
143 <listitem>
144 <para>libraries provide the functions to read and write video
145 files.</para>
146 <indexterm zone="libtheora libtheora-lib">
147 <primary sortas="c-libtheora">libtheora*.so</primary>
148 </indexterm>
149 </listitem>
150 </varlistentry>
151
152 </variablelist>
153
154 </sect2>
155
156</sect1>
Note: See TracBrowser for help on using the repository browser.