source: kde/phonon.xml@ 3d6e95d

systemd-13485
Last change on this file since 3d6e95d was 2e633b6, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Archived KDE4
Fixed Xorg-Server installation instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17347 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
[ac38e9dc]7 <!ENTITY phonon-download-http "&kde-download-http;phonon/&phonon-version;/src/phonon-&phonon-version;.tar.xz">
8 <!ENTITY phonon-download-ftp "&kde-download-ftp;phonon/&phonon-version;/src/phonon-&phonon-version;.tar.xz">
[dfcd93ca]9 <!ENTITY phonon-md5sum "88bb9867261803eed61ff53a7c026338">
[ac38e9dc]10 <!ENTITY phonon-size "316 KB">
11 <!ENTITY phonon-buildsize "11.7 MB">
[b28afcc]12 <!ENTITY phonon-time "0.4 SBU">
[0e25c32]13]>
14
[22899f9]15<sect1 id="phonon" xreflabel="Phonon-&phonon-version;">
[0e25c32]16 <?dbhtml filename="phonon.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Phonon-&phonon-version;</title>
24
25 <indexterm zone="phonon">
[22899f9]26 <primary sortas="a-Phonon">Phonon</primary>
[0e25c32]27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Phonon</title>
31
32 <para><application>Phonon</application> is the multimedia API for KDE4.
[8569196]33 It replaces the old <application>aRts</application>, that is no longer
[2a7334e8]34 supported by KDE. Phonon needs either the GStreamer or VLC backend.</para>
[0e25c32]35
[ac38e9dc]36 &lfs77_checked;
[0e25c32]37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&phonon-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&phonon-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &phonon-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &phonon-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &phonon-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &phonon-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Phonon Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Required</bridgehead>
63 <para role="required">
[ac38e9dc]64 <xref linkend="cmake"/>,
65 <xref linkend="glib2"/> and
[2e633b6]66 <xref linkend="qt5"/>
[0e25c32]67 </para>
68
69 <bridgehead renderas="sect4">Optional</bridgehead>
70 <para role="optional">
[ac38e9dc]71 <xref linkend="pulseaudio"/> and
[ba1e8dd]72 <ulink url="http://projects.kde.org/projects/kdesupport/libqzeitgeist/">QZeitgeist</ulink>
[0d7900a]73 </para>
74
[0e25c32]75 <para condition="html" role="usernotes">User Notes:
76 <ulink url="&blfs-wiki;/phonon"/></para>
77
78 </sect2>
79
80 <sect2 role="installation">
81 <title>Installation of Phonon</title>
82
[2e633b6]83<!-- <para>Make sure that <xref linkend="qt4"/> is compiled without the bundled
[0e25c32]84 <application>Phonon</application> library. This package provides
[2e633b6]85 a better implementation.</para> -->
[0d7900a]86
[22899f9]87 <para>
88 First, silence a lot of warnings caused by using the latest toolchain
89 by running the following command:
90 </para>
91
92<screen><userinput>sed -i "s:BSD_SOURCE:DEFAULT_SOURCE:g" cmake/FindPhononInternal.cmake</userinput></screen>
93
[0e25c32]94 <para>Install <application>Phonon</application> by running the following
95 commands:</para>
96
[ba1e8dd]97<!-- CMAKE_INSTALL_LIBDIR is used so the package doesn't write over lib64 symlink on 64 bit system -->
[0e25c32]98<screen><userinput>mkdir build &amp;&amp;
[18c9ee54]99cd build &amp;&amp;
100
[ac38e9dc]101cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \
102 -DCMAKE_BUILD_TYPE=Release \
103 -DCMAKE_INSTALL_LIBDIR=lib \
[415e4b2]104 -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE \
[97c713e]105 -Wno-dev .. &amp;&amp;
[0e25c32]106make</userinput></screen>
107
108 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
109
110<screen role="root"><userinput>make install</userinput></screen>
111
[a1dcfe0]112 </sect2>
113
114 <sect2 role="commands">
115 <title>Command Explanations</title>
116
[ba1e8dd]117 <para>
118 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used
119 to apply higher level of the compiler optimizations.
120 </para>
121
[2e633b6]122<!--
[ba1e8dd]123 <para>
[415e4b2]124 <parameter>-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE</parameter>:
[ba1e8dd]125 This switch ensures that the plugins and mkspecs files get installed in
126 the correct location.
[2e633b6]127 </para> -->
128
[ba1e8dd]129 <para>
130 <option>-DPHONON_BUILD_PHONON4QT5=ON</option>: Use this switch if you want to
131 build <application>Phonon</application> against <application>Qt5</application>.
132 Note that both <application>Qt4</application> and <application>Qt5</application>
133 versions can be installed at the same time without any conflicts.
[3ddb430]134 </para>
[2e633b6]135
[3ddb430]136
[a1dcfe0]137 </sect2>
138
[0e25c32]139 <sect2 role="content">
140 <title>Contents</title>
141
142 <segmentedlist>
[ad41452]143 <segtitle>Installed Programs</segtitle>
[0e25c32]144 <segtitle>Installed Libraries</segtitle>
[ad41452]145 <segtitle>Installed Directories</segtitle>
[0e25c32]146
147 <seglistitem>
[ba1e8dd]148 <seg>
149 None
150 </seg>
151 <seg>
[2e633b6]152 libphonon4qt5.so and
153 libphonon4qt5experimental.so
[ba1e8dd]154 </seg>
155 <seg>
[2e633b6]156 /usr/include/phonon4qt5,
157 /usr/lib/cmake/phonon4qt5, and
158 /usr/share/phonon4qt5
[ba1e8dd]159 </seg>
[0e25c32]160 </seglistitem>
161 </segmentedlist>
[b4cc9a3]162
[0e25c32]163 </sect2>
164
165</sect1>
Note: See TracBrowser for help on using the repository browser.