- Timestamp:
- 01/03/2014 02:45:45 PM (9 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 7.10, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 68bd004
- Parents:
- 739148a
- Location:
- kde/core
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kde/core/attica.xml
r739148a rba1e8dd 61 61 <bridgehead renderas="sect4">Required</bridgehead> 62 62 <para role="required"> 63 <xref linkend="qt4"/> and 64 <xref linkend="cmake"/> 63 <xref linkend="cmake"/> and 64 <xref linkend="qt4"/> 65 </para> 66 67 <bridgehead renderas="sect4">Optional</bridgehead> 68 <para role="optional"> 69 <xref linkend="qt5"/> (requires 70 <ulink url="http://quickgit.kde.org/index.php?p=extra-cmake-modules.git"> 71 extra-cmake-modules</ulink>) 65 72 </para> 66 73 … … 81 88 cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \ 82 89 -DCMAKE_BUILD_TYPE=Release \ 90 -DQT4_BUILD=ON \ 83 91 .. && 84 92 make</userinput></screen> … … 95 103 <title>Command Explanations</title> 96 104 97 <para><option>-DCMAKE_BUILD_TYPE=Release</option>: This switch is used to apply 98 a higher level of compiler optimizations.</para> 105 <para> 106 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used 107 to apply a higher level of compiler the optimizations. 108 </para> 109 110 <para> 111 <parameter>-DQT4_BUILD=ON</parameter>: This switch forces the package 112 to build against <application>Qt4</application> even if 113 <application>Qt5</application> is present on the system. Remove it if 114 you want to build the package against <application>Qt5</application>. 115 </para> 99 116 100 117 </sect2> -
kde/core/kde-runtime.xml
r739148a rba1e8dd 113 113 cd build && 114 114 115 cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \ 116 -DSYSCONF_INSTALL_DIR=/etc \ 117 -DCMAKE_BUILD_TYPE=Release \ 115 cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \ 116 -DSYSCONF_INSTALL_DIR=/etc \ 117 -DCMAKE_BUILD_TYPE=Release \ 118 -DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \ 118 119 .. && 119 120 make</userinput></screen> … … 124 125 125 126 <screen role="root"><userinput>make install && 126 ln -s -v ../lib/kde4/libexec/kdesu &kde-dir;/bin/kdesu</userinput></screen> 127 ln -sfv ../lib/kde4/libexec/kdesu &kde-dir;/bin/kdesu</userinput></screen> 128 129 </sect2> 130 131 <sect2 role="commands"> 132 <title>Command Explanations</title> 133 134 <para> 135 <parameter>-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0</parameter>: 136 This switch is used so that <application>CMake</application> can 137 properly find <application>Samba</application> headers which got 138 moved in version 4. 139 </para> 127 140 128 141 </sect2> -
kde/core/phonon-backend-gstreamer.xml
r739148a rba1e8dd 88 88 89 89 cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \ 90 -DCMAKE_INSTALL_LIBDIR=lib \ 90 91 -DCMAKE_BUILD_TYPE=Release \ 91 92 .. && -
kde/core/phonon-backend-vlc.xml
r739148a rba1e8dd 80 80 81 81 cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \ 82 -DCMAKE_INSTALL_LIBDIR=lib \ 82 83 -DCMAKE_BUILD_TYPE=Release \ 83 84 .. && -
kde/core/phonon.xml
r739148a rba1e8dd 62 62 <bridgehead renderas="sect4">Required</bridgehead> 63 63 <para role="required"> 64 <xref linkend="automoc4"/> and65 <xref linkend="glib2"/>64 <xref linkend="automoc4"/> and 65 <xref linkend="glib2"/> 66 66 </para> 67 67 68 68 <bridgehead renderas="sect4">Optional</bridgehead> 69 69 <para role="optional"> 70 <xref linkend='pulseaudio'/> and 71 <ulink url="http://projects.kde.org/projects/kdesupport/libqzeitgeist/">QZeitgeist</ulink> 70 <xref linkend="pulseaudio"/>, 71 <xref linkend="qt5"/> and 72 <ulink url="http://projects.kde.org/projects/kdesupport/libqzeitgeist/">QZeitgeist</ulink> 72 73 </para> 73 74 … … 87 88 commands:</para> 88 89 90 <!-- CMAKE_INSTALL_LIBDIR is used so the package doesn't write over lib64 symlink on 64 bit system --> 89 91 <screen><userinput>mkdir build && 90 92 cd build && … … 92 94 cmake -DCMAKE_INSTALL_PREFIX=&qt4-dir; \ 93 95 -DCMAKE_BUILD_TYPE=Release \ 96 -DCMAKE_INSTALL_LIBDIR=lib \ 94 97 -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=TRUE \ 95 98 -DDBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces \ … … 106 109 <title>Command Explanations</title> 107 110 108 <para><option>-DCMAKE_BUILD_TYPE=Release</option>: This switch is used to apply 109 higher level of compiler optimizations.</para> 111 <para> 112 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used 113 to apply higher level of the compiler optimizations. 114 </para> 110 115 111 <para><option>-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=TRUE</option>: 112 This option ensures that the plugins and mkspecs files get installed in 113 the correct location.</para> 116 <para> 117 <parameter>-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=TRUE</parameter>: 118 This switch ensures that the plugins and mkspecs files get installed in 119 the correct location. 120 </para> 114 121 115 <para><option>-DDBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces</option>: 116 This option sets the correct installation path for a D-Bus interfaces file. 122 <para> 123 <parameter>-DDBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces</parameter>: 124 This switch sets the correct installation path for the 125 <application>D-Bus</application> interfaces file. 126 </para> 127 128 <para> 129 <option>-DPHONON_BUILD_PHONON4QT5=ON</option>: Use this switch if you want to 130 build <application>Phonon</application> against <application>Qt5</application>. 131 Note that both <application>Qt4</application> and <application>Qt5</application> 132 versions can be installed at the same time without any conflicts. 117 133 </para> 118 134 … … 128 144 129 145 <seglistitem> 130 <seg>none</seg> 131 <seg>libphonon.so and libphononexperimental.so</seg> 132 <seg>none</seg> 146 <seg> 147 None 148 </seg> 149 <seg> 150 libphonon.so and 151 libphononexperimental.so 152 </seg> 153 <seg> 154 &qt4-dir;/include/KDE/Phonon, 155 &qt4-dir;/include/phonon, and 156 &qt4-dir;/share/phonon 157 </seg> 133 158 </seglistitem> 134 159 </segmentedlist>
Note:
See TracChangeset
for help on using the changeset viewer.