Changeset aa9c0853
- Timestamp:
- 03/24/2017 05:33:16 AM (8 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 2eb903f
- Parents:
- 0acce93
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r0acce93 raa9c0853 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 3"> <!-- Always 2 digits -->3 <!ENTITY day "24"> <!-- Always 2 digits --> 4 4 <!ENTITY month "03"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2017"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "March 2 3rd&year;">9 <!ENTITY releasedate "March 24th &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
r0acce93 raa9c0853 43 43 --> 44 44 <listitem> 45 <para>March 24th, 2017</para> 46 <itemizedlist> 47 <listitem> 48 <para>[dj] - Remove unneeded '-DLIB_INSTALL_DIR' from KF5 and Plasma 49 build instructions.</para> 50 </listitem> 51 <listitem> 52 <para>[dj] - Clean up Chromium instructions. Thanks Bruce.</para> 53 </listitem> 54 </itemizedlist> 55 </listitem> 56 57 <listitem> 45 58 <para>March 23rd, 2017</para> 46 59 <itemizedlist> -
kde/extra-cmake-modules.xml
r0acce93 raa9c0853 128 128 <command>sed ... Modules/KDEInstallDirs.cmake</command>: 129 129 This command disables applications using cmake from attempting to 130 install files in /usr/lib64/. 130 install files in a <filename class="directory">lib64</filename> 131 sub-directory. 131 132 </para> 132 133 </sect2> -
kde/kf5/kf5-frameworks.xml
r0acce93 raa9c0853 310 310 -DCMAKE_PREFIX_PATH=$QT5DIR \ 311 311 -DCMAKE_BUILD_TYPE=Release \ 312 -DLIB_INSTALL_DIR=lib \313 312 -DBUILD_TESTING=OFF \ 314 313 -Wno-dev .. … … 350 349 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used 351 350 to apply higher level of the compiler optimizations. 352 </para>353 354 <para>355 <parameter>-DLIB_INSTALL_DIR=lib</parameter>: This switch is used356 to get libraries to install to <filename357 class="directory">$KF5_PREFIX/lib</filename> instead of <filename358 class="directory">$KF5_PREFIX/lib64</filename> on a 64 bit system.359 351 </para> 360 352 -
kde/libdbusmenuqt.xml
r0acce93 raa9c0853 84 84 85 85 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 86 -DCMAKE_INSTALL_LIBDIR=lib \87 86 -DCMAKE_BUILD_TYPE=Release \ 88 87 -DWITH_DOC=OFF \ -
kde/phonon-backend-gstreamer.xml
r0acce93 raa9c0853 94 94 95 95 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 96 -DCMAKE_INSTALL_LIBDIR=lib \97 96 -DCMAKE_BUILD_TYPE=Release \ 98 97 -DPHONON_BUILD_PHONON4QT5=ON \ … … 111 110 <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is 112 111 used to apply higher level of compiler optimizations.</para> 113 114 <para><parameter>-DCMAKE_INSTALL_LIBDIR=lib</parameter>: This switch is115 used to get libraries to install to /usr/lib instead of /usr/lib64 on a116 64 bit system.</para>117 112 118 113 <para><parameter>-DPHONON_BUILD_PHONON4QT5=ON</parameter>: This switch is -
kde/phonon-backend-vlc.xml
r0acce93 raa9c0853 87 87 88 88 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 89 -DCMAKE_INSTALL_LIBDIR=lib \90 89 -DCMAKE_BUILD_TYPE=Release \ 91 90 -DPHONON_BUILD_PHONON4QT5=ON \ … … 104 103 <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is 105 104 used to apply higher level of compiler optimizations.</para> 106 107 <para><parameter>-DCMAKE_INSTALL_LIBDIR=lib</parameter>: This switch is108 used to get libraries to install to /usr/lib instead of /usr/lib64 on a109 64 bit system.</para>110 105 111 106 <para><parameter>-DPHONON_BUILD_PHONON4QT5=ON</parameter>: This switch is -
kde/phonon.xml
r0acce93 raa9c0853 88 88 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 89 89 -DCMAKE_BUILD_TYPE=Release \ 90 -DCMAKE_INSTALL_LIBDIR=lib \91 90 -DPHONON_BUILD_PHONON4QT5=ON \ 92 91 -Wno-dev .. && -
kde/plasma5/plasma-all.xml
r0acce93 raa9c0853 222 222 cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \ 223 223 -DCMAKE_BUILD_TYPE=Release \ 224 -DLIB_INSTALL_DIR=lib \225 224 -DBUILD_TESTING=OFF \ 226 225 -Wno-dev .. && -
kde/polkit-qt.xml
r0acce93 raa9c0853 82 82 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 83 83 -DCMAKE_BUILD_TYPE=Release \ 84 -DCMAKE_INSTALL_LIBDIR=lib \85 84 -Wno-dev .. && 86 85 make</userinput></screen> … … 102 101 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used 103 102 to apply higher level of the compiler optimizations. 104 </para>105 106 <para>107 <parameter>-DCMAKE_INSTALL_LIBDIR=lib</parameter>: This switch is108 used to get libraries to install to <filename109 class="directory">$KF5_PREFIX/lib</filename> instead of <filename110 class="directory">$KF5_PREFIX/lib64</filename> on a 64 bit system.111 103 </para> 112 104 -
xsoft/graphweb/chromium.xml
r0acce93 raa9c0853 166 166 <para>Fix a build issue with GCC-6:</para> 167 167 168 <screen><userinput>sed "s/^config(\"compiler\") {/&\ncflags_cc = [ \"-fno-delete-null-pointer-checks\" ]/"\168 <screen><userinput>sed 's/^config("compiler") {/&\ncflags_cc = [ "-fno-delete-null-pointer-checks" ]/' \ 169 169 -i build/config/linux/BUILD.gn</userinput></screen> 170 170 171 <para> If you'd like to enable the use of the171 <para>Enable the use of the 172 172 <ulink url="http://www.widevine.com/">WideVine</ulink> plugin, needed for 173 Netflix support (see the WideVine section below) , you'll need to define an173 Netflix support (see the WideVine section below). Define an 174 174 available product name ("Pinkie Pie" in this case) with the following 175 175 command:</para> 176 176 177 <screen><userinput>sed "s/WIDEVINE_CDM_AVAILABLE/&\n\n#define WIDEVINE_CDM_VERSION_STRING \"Pinkie Pie\"/"\177 <screen><userinput>sed 's/WIDEVINE_CDM_AVAILABLE/&\n\n#define WIDEVINE_CDM_VERSION_STRING "Pinkie Pie"/' \ 178 178 -i third_party/widevine/cdm/stub/widevine_cdm_version.h</userinput></screen> 179 179 … … 230 230 </note> 231 231 232 <screen><userinput>GN_CONFIG=( "google_api_key=\"AIzaSyDxKL42zsPjbke5O8_rPVpVrLrJ8aeE9rQ\""233 "google_default_client_id=\"595013732528-llk8trb03f0ldpqq6nprjp1s79596646.apps.googleusercontent.com\"" 234 "google_default_client_secret=\"5ntt6GbbkjnTVXx-MSxbmx5e\"" 232 <screen><userinput>GN_CONFIG=('google_api_key="AIzaSyDxKL42zsPjbke5O8_rPVpVrLrJ8aeE9rQ"' 233 'google_default_client_id="595013732528-llk8trb03f0ldpqq6nprjp1s79596646.apps.googleusercontent.com"' 234 'google_default_client_secret="5ntt6GbbkjnTVXx-MSxbmx5e"' 235 235 'clang_use_chrome_plugins=false' 236 236 'enable_hangout_services_extension=true' … … 284 284 ln -svf /usr/lib/chromium/chromedriver /usr/bin/ && 285 285 286 install -vm755 out/Release/libwidevinecdmadapter.so \287 /usr/lib/chromium/ &&288 286 install -vDm644 out/Release/gen/content/content_resources.pak \ 289 287 /usr/lib/chromium/ && … … 338 336 esac</userinput></screen> 339 337 340 <para>As the <systemitem class="username">root</systemitem> user, install 341 the WideVine plugin with the following command:</para> 342 343 <screen role="root"><userinput>tar -xf data.tar.xz 344 install -vm755 opt/google/chrome/libwidevinecdm.so \ 345 /usr/lib/chromium/</userinput></screen> 338 <para>As the <systemitem class="username">root</systemitem> user, enable 339 the WideVine plugin with the following commands:</para> 340 341 <!-- Note that libwidevinecdmadapter.so is not in the tarball. It is 342 created only if enable_widevine=true i sset in GN_CONFIG --> 343 344 <screen role="root"><userinput>tar -xf data.tar.xz && 345 install -vm755 ../out/Release/libwidevinecdmadapter.so /usr/lib/chromium/ && 346 install -vm755 opt/google/chrome/libwidevinecdm.so /usr/lib/chromium/</userinput></screen> 346 347 347 348 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.