source: kde/phonon.xml@ 6bb65ce

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 6bb65ce was 7e8a6bf, checked in by Pierre Labastie <pieere@…>, 5 years ago

2 tags and dependency tweaks

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

  • Property mode set to 100644
File size: 4.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" [
[632bfad]4 <!ENTITY % general-entities SYSTEM "../general.ent">
[0e25c32]5 %general-entities;
6
[b291709]7 <!ENTITY phonon-download-http "&kde-download-http;phonon/&phonon-version;/phonon-&phonon-version;.tar.xz">
8 <!ENTITY phonon-download-ftp " ">
[951597f1]9 <!ENTITY phonon-md5sum "ed828952beaa140d1c025513febd8e5d">
[a911ae7]10 <!ENTITY phonon-size "316 KB">
[951597f1]11 <!ENTITY phonon-buildsize "8.8 MB">
[cf8bec7]12 <!ENTITY phonon-time "0.2 SBU (Using parallelism=4)">
[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
[632bfad]32 <para><application>Phonon</application> is the multimedia API for KDE.
[8e6f4f8]33 It replaces the old <application>aRts</application> package.
34 Phonon needs either the GStreamer or VLC backend.</para>
[0e25c32]35
[6dd3533]36 &lfs84_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">
[d591de4]64 <xref linkend="cmake"/>,
[f0061d7]65 <xref linkend="extra-cmake-modules"/>,
[8e6f4f8]66 <xref linkend="glib2"/>, and
[b291709]67 <xref linkend="qt5"/>
[0e25c32]68 </para>
69
[7e8a6bf]70 <para role="required">
71 At least one of <xref linkend="phonon-backend-gstreamer" role="runtime"/>
72 or <xref linkend="phonon-backend-vlc" role="runtime"/> needs to be
73 installed afterwards for multimedia operation in
74 <application>KDE</application>.
75 </para>
76
[0e25c32]77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
[b291709]79 <xref linkend="pulseaudio"/>
[0d7900a]80 </para>
81
[0e25c32]82 <para condition="html" role="usernotes">User Notes:
83 <ulink url="&blfs-wiki;/phonon"/></para>
84
85 </sect2>
86
87 <sect2 role="installation">
88 <title>Installation of Phonon</title>
[9e04432]89 <para>Install <application>Phonon</application> by
90 running the following commands:</para>
[632bfad]91
[08f422e]92<screen><userinput>mkdir build &amp;&amp;
[632bfad]93cd build &amp;&amp;
94
95cmake -DCMAKE_INSTALL_PREFIX=/usr \
96 -DCMAKE_BUILD_TYPE=Release \
[5cbfaba]97 -DPHONON_BUILD_PHONON4QT5=ON \
[632bfad]98 -Wno-dev .. &amp;&amp;
99make</userinput></screen>
100
101 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
102
[0e25c32]103<screen role="root"><userinput>make install</userinput></screen>
104
[a1dcfe0]105 </sect2>
106
107 <sect2 role="commands">
108 <title>Command Explanations</title>
109
[ba1e8dd]110 <para>
111 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used
112 to apply higher level of the compiler optimizations.
113 </para>
[9e04432]114<!--
[ba1e8dd]115 <para>
[8309bf4]116 <parameter>-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE</parameter>:
[ba1e8dd]117 This switch ensures that the plugins and mkspecs files get installed in
118 the correct location.
119 </para>
[9e04432]120-->
[632bfad]121 <para>
[f3429309]122 <parameter>-DPHONON_BUILD_PHONON4QT5=ON</parameter>: This switch is used to
123 ensure that Qt5 version of the library is built even if Qt4 is present.
[632bfad]124 </para>
125
[a1dcfe0]126 </sect2>
127
[0e25c32]128 <sect2 role="content">
129 <title>Contents</title>
130
131 <segmentedlist>
[ad41452]132 <segtitle>Installed Programs</segtitle>
[0e25c32]133 <segtitle>Installed Libraries</segtitle>
[ad41452]134 <segtitle>Installed Directories</segtitle>
[0e25c32]135
136 <seglistitem>
[ba1e8dd]137 <seg>
138 None
139 </seg>
140 <seg>
[632bfad]141 libphonon4qt5.so
142 libphonon4qt5experimental.so
[ba1e8dd]143 </seg>
144 <seg>
[632bfad]145 /usr/include/phonon4qt5,
[9e04432]146 /usr/lib/cmake/phonon4qt5, and
[632bfad]147 /usr/share/phonon4qt5
[ba1e8dd]148 </seg>
[0e25c32]149 </seglistitem>
150 </segmentedlist>
[b4cc9a3]151
[0e25c32]152 </sect2>
153
154</sect1>
Note: See TracBrowser for help on using the repository browser.