source: kde/core/phonon.xml@ f7412376

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 f7412376 was f7412376, checked in by Ken Moffat <ken@…>, 9 years ago

My final tags for the moment - for some of these, I'm happy to treat them as a build dep, but for many others they seem to have functionality which I haven't explored, so only 'built'.

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

  • Property mode set to 100644
File size: 5.5 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" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[5bebacd]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">
9 <!ENTITY phonon-md5sum "88bb9867261803eed61ff53a7c026338">
[a911ae7]10 <!ENTITY phonon-size "316 KB">
[5bebacd]11 <!ENTITY phonon-buildsize "11.7 MB">
[a911ae7]12 <!ENTITY phonon-time "0.4 SBU">
[0e25c32]13]>
14
15<sect1 id="phonon" xreflabel="phonon-&phonon-version;">
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">
26 <primary sortas="a-phonon">phonon</primary>
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
[f7412376]36 &lfs77_checked; &gcc5_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">
[3761d2f]64 <!--<xref linkend="automoc4"/> and-->
[d591de4]65 <xref linkend="cmake"/>,
[a2d2f0c]66 <xref linkend="glib2"/> and
[2aae58ff]67 <xref linkend="qt4"/>
[0e25c32]68 </para>
69
70 <bridgehead renderas="sect4">Optional</bridgehead>
71 <para role="optional">
[2aae58ff]72 <xref linkend="pulseaudio"/>,
73 <xref linkend="qt5"/> and
[ba1e8dd]74 <ulink url="http://projects.kde.org/projects/kdesupport/libqzeitgeist/">QZeitgeist</ulink>
[0d7900a]75 </para>
76
[0e25c32]77 <para condition="html" role="usernotes">User Notes:
78 <ulink url="&blfs-wiki;/phonon"/></para>
79
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of Phonon</title>
84
[7af92fe5]85 <para>Make sure that <xref linkend="qt4"/> is compiled without the bundled
[0e25c32]86 <application>Phonon</application> library. This package provides
87 a better implementation.</para>
[0d7900a]88
[5884838]89 <note><para>If you have both Qt4 and Qt5 installed, be sure to run
90 <userinput>source setqt4</userinput> before installing Phonon.
91 </para></note>
92
[0e25c32]93 <para>Install <application>Phonon</application> by running the following
94 commands:</para>
95
[ba1e8dd]96<!-- CMAKE_INSTALL_LIBDIR is used so the package doesn't write over lib64 symlink on 64 bit system -->
[0e25c32]97<screen><userinput>mkdir build &amp;&amp;
[18c9ee54]98cd build &amp;&amp;
99
[2aae58ff]100cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \
[a911ae7]101 -DCMAKE_BUILD_TYPE=Release \
102 -DCMAKE_INSTALL_LIBDIR=lib \
103 -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE \
[3ddb430]104 -DDBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces \
[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
122 <para>
[8309bf4]123 <parameter>-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE</parameter>:
[ba1e8dd]124 This switch ensures that the plugins and mkspecs files get installed in
125 the correct location.
126 </para>
[b4cc9a3]127
[ba1e8dd]128 <para>
129 <parameter>-DDBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces</parameter>:
130 This switch sets the correct installation path for the
131 <application>D-Bus</application> interfaces file.
132 </para>
[a1dcfe0]133
[5884838]134<!--
[ba1e8dd]135 <para>
136 <option>-DPHONON_BUILD_PHONON4QT5=ON</option>: Use this switch if you want to
137 build <application>Phonon</application> against <application>Qt5</application>.
138 Note that both <application>Qt4</application> and <application>Qt5</application>
139 versions can be installed at the same time without any conflicts.
[3ddb430]140 </para>
[5884838]141-->
[3ddb430]142
[a1dcfe0]143 </sect2>
144
[0e25c32]145 <sect2 role="content">
146 <title>Contents</title>
147
148 <segmentedlist>
[ad41452]149 <segtitle>Installed Programs</segtitle>
[0e25c32]150 <segtitle>Installed Libraries</segtitle>
[ad41452]151 <segtitle>Installed Directories</segtitle>
[0e25c32]152
153 <seglistitem>
[ba1e8dd]154 <seg>
155 None
156 </seg>
157 <seg>
158 libphonon.so and
159 libphononexperimental.so
160 </seg>
161 <seg>
[81e3aeaa]162 &kde-dir;/include/KDE/Phonon,
[8480442]163 &kde-dir;/include/phonon,
164 &kde-dir;/lib/cmake/phonon, and
[81e3aeaa]165 &kde-dir;/share/phonon
[ba1e8dd]166 </seg>
[0e25c32]167 </seglistitem>
168 </segmentedlist>
[b4cc9a3]169
[0e25c32]170 </sect2>
171
172</sect1>
Note: See TracBrowser for help on using the repository browser.