source: kde/phonon-backend-gstreamer.xml@ a440011

systemd-13485
Last change on this file since a440011 was 288406c7, checked in by DJ Lucas <dj@…>, 8 years ago

Complete KDE reorg (before update), more svn keywords and mime-type fixes

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17148 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.1 KB
RevLine 
[0e25c32]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" [
[288406c7]4 <!ENTITY % general-entities SYSTEM "../general.ent">
[0e25c32]5 %general-entities;
6
[a0353ea]7 <!ENTITY phonon-backend-gstreamer-download-http "&kde-download-http;phonon/phonon-backend-gstreamer/&phonon-backend-gstreamer-version;/src/phonon-backend-gstreamer-&phonon-backend-gstreamer-version;.tar.xz">
8 <!ENTITY phonon-backend-gstreamer-download-ftp "&kde-download-ftp;phonon/phonon-backend-gstreamer/&phonon-backend-gstreamer-version;/src/phonon-backend-gstreamer-&phonon-backend-gstreamer-version;.tar.xz">
[ac38e9dc]9 <!ENTITY phonon-backend-gstreamer-md5sum "ce441035dc5a00ffaac9a64518ab5c62">
10 <!ENTITY phonon-backend-gstreamer-size "76 KB">
11 <!ENTITY phonon-backend-gstreamer-buildsize "4.1 MB">
[dfcd93ca]12 <!ENTITY phonon-backend-gstreamer-time "0.2 SBU">
[0e25c32]13]>
14
[22899f9]15<sect1 id="phonon-backend-gstreamer" xreflabel="Phonon-Backend-GStreamer-&phonon-backend-gstreamer-version;">
[0e25c32]16 <?dbhtml filename="phonon-backend-gstreamer.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
[22899f9]23 <title>Phonon-Backend-GStreamer-&phonon-backend-gstreamer-version;</title>
[0e25c32]24
25 <indexterm zone="phonon-backend-gstreamer">
[22899f9]26 <primary sortas="a-Phonon-Backend-GStreamer">Phonon-Backend-GStreamer</primary>
[0e25c32]27 </indexterm>
28
29 <sect2 role="package">
[22899f9]30 <title>Introduction to the Phonon-Backend-GStreamer</title>
[0e25c32]31
32 <para>This package provides a <application>Phonon</application> backend which
33 utilizes the <application>GStreamer</application> media framework.</para>
34
[ac38e9dc]35 &lfs77_checked;
[0e25c32]36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>Download (HTTP): <ulink url="&phonon-backend-gstreamer-download-http;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download (FTP): <ulink url="&phonon-backend-gstreamer-download-ftp;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download MD5 sum: &phonon-backend-gstreamer-md5sum;</para>
47 </listitem>
48 <listitem>
49 <para>Download size: &phonon-backend-gstreamer-size;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated disk space required: &phonon-backend-gstreamer-buildsize;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated build time: &phonon-backend-gstreamer-time;</para>
56 </listitem>
57 </itemizedlist>
58
[22899f9]59 <bridgehead renderas="sect3">Phonon-Backend-GStreamer Dependencies</bridgehead>
[0e25c32]60
61 <bridgehead renderas="sect4">Required</bridgehead>
62 <para role="required">
[ac38e9dc]63 <xref linkend="gstreamer10"/>,
64 <xref linkend="libxml2"/> and
[22899f9]65 <xref linkend="phonon"/>
[0e25c32]66 </para>
[0d7900a]67
[a1dcfe0]68 <bridgehead renderas="sect4">Recommended</bridgehead>
69 <para role="recommended">
[ac38e9dc]70 <xref linkend="gst10-plugins-base"/> (needed for output to ALSA),
71 <xref linkend="gst10-plugins-good"/> (needed for output to PulseAudio),
72 <xref linkend="gst10-plugins-bad"/> (needed for AAC/M4A support) and
73 <xref linkend="gst10-plugins-ugly"/> (needed for MP3 support)
[a1dcfe0]74 </para>
[0d7900a]75
[0e25c32]76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/phonon-backend-gstreamer"/></para>
[0d7900a]78
[0e25c32]79 </sect2>
80
81 <sect2 role="installation">
[22899f9]82 <title>Installation of Phonon-Backend-GStreamer</title>
[0e25c32]83
[22899f9]84 <para>Install <application>Phonon-Backend-GStreamer</application> by running the following
[0e25c32]85 commands:</para>
86
87<screen><userinput>mkdir build &amp;&amp;
[18c9ee54]88cd build &amp;&amp;
89
[fad29ed]90cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \
[ba1e8dd]91 -DCMAKE_INSTALL_LIBDIR=lib \
[18c9ee54]92 -DCMAKE_BUILD_TYPE=Release \
[97c713e]93 -Wno-dev .. &amp;&amp;
[0e25c32]94make</userinput></screen>
95
96 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
97
98<screen role="root"><userinput>make install</userinput></screen>
99
[fad29ed]100 </sect2>
101
[0e25c32]102 <sect2 role="commands">
103 <title>Command Explanations</title>
104
[fad29ed]105 <para><option>-DCMAKE_BUILD_TYPE=Release</option>: This switch is used to apply
106 higher level of compiler optimizations.</para>
[0e25c32]107
108 </sect2>
[fad29ed]109
[0e25c32]110 <sect2 role="content">
111 <title>Contents</title>
112
113 <segmentedlist>
[2cfb44a4]114 <segtitle>Installed Programs</segtitle>
[0e25c32]115 <segtitle>Installed Libraries</segtitle>
[2cfb44a4]116 <segtitle>Installed Directories</segtitle>
[0e25c32]117
118 <seglistitem>
[e9f77617]119 <seg>none</seg>
120 <seg>phonon_gstreamer.so</seg>
[fad29ed]121 <seg>&kde-dir;/lib/kde4/plugins/phonon_backend and
122 &kde-dir;/share/kde4/services/phononbackends</seg>
[0e25c32]123 </seglistitem>
124 </segmentedlist>
125<!--
126 <variablelist>
127 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
128 <?dbfo list-presentation="list"?>
129 <?dbhtml list-presentation="table"?>
130
131 <varlistentry id="a-phonon">
132 <term><command>phonon</command></term>
133 <listitem>
134 <para>is a testing utility for phonon-backend-gstreamer-generated build trees.</para>
135 <indexterm zone="a-phonon phonon">
136 <primary sortas="b-phonon">phonon</primary>
137 </indexterm>
138 </listitem>
139 </varlistentry>
140
141 </variablelist>
142-->
143 </sect2>
144
145</sect1>
Note: See TracBrowser for help on using the repository browser.