source: kde/core/pre-install-config.xml@ 35bf1ea

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 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 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 35bf1ea was a8d5ef7, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Changed KDE3 to Trinity-3.5.13.
The core files are done, but the additional and
development packages have not been updated yet

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

  • Property mode set to 100644
File size: 2.8 KB
Line 
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]>
7
8<sect1 id="kde-pre-install-config">
9 <?dbhtml filename="pre-install-config.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Trinity/KDE3 Pre-installation Configuration</title>
17
18 <para>Based on your preference, set TRINITY_PREFIX.</para>
19
20 <para>One option is to put <application>Trinity/KDE3</application> into the
21 <filename class='directory'>/usr</filename> hierarchy. This creates a
22 simpler setup but is more difficult to try multiple versions of
23 <application>Trinity/KDE3</application>.</para>
24
25<screen><userinput>export TRINITY_PREFIX=/usr</userinput></screen>
26
27 <para>The Trinty developers and BLFS editors recommend installing Trinity in
28 the <filename class='directory'>/opt</filename> directory in order to support
29 using one version while building another.</para>
30
31<screen><userinput>export TRINITY_PREFIX=/opt/trinity-&trinity-version;</userinput></screen>
32
33 <para>Using this option requires updates to the PATH, PKG_CONFIG_PATH, and
34 library search path:</para>
35
36 <itemizedlist>
37 <listitem>
38 <para>Update PATH</para>
39<screen><userinput>export PATH=$TRINITY_PREFIX/bin:$PATH</userinput></screen>
40 </listitem>
41
42 <listitem>
43 <para>Update PKG_CONFIG_PATH</para>
44<screen><userinput>export PKG_CONFIG_PATH=$TRINITY_PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH</userinput></screen>
45 </listitem>
46
47 <listitem>
48 <para>Update the library search path</para>
49<screen><userinput>export LD_LIBRARY_PATH=$TRINITY_PREFIX/lib:$LD_LIBRARY_PATH</userinput></screen>
50 </listitem>
51
52 </itemizedlist>
53
54 <para>The instructions for making these changes permanent are in
55 <xref linkend='kde-core-config'/>.</para>
56
57 <para>There are two other environment variables that need to be set to build
58 <application>Trinity/KDE3</application>. These are needed for all the
59 <userinput>cmake</userinput> based packages:</para>
60
61<screen><userinput>export CMAKE_PREFIX_PATH=/opt/qt:$TRINITY_PREFIX &amp;&amp;
62
63CMAKE_INCLUDE_PATH=/opt/qt/include:/usr/include/dbus-1.0 &amp;&amp;
64export CMAKE_INCLUDE_PATH=$CMAKE_INCLUDE_PATH:$TRINITY_PREFIX/include</userinput></screen>
65
66 <para>You should also consider installing the <xref linkend="desktop-file-utils"/>
67 package. Though not required, this package will allow you to easily use
68 existing <filename>.desktop</filename> files in
69 <filename class='directory'>/usr/share/applications</filename> (and any other
70 locations identified by <envar>XDG_DATA_DIRS</envar>), and automatically add
71 these applications to the menu system.</para>
72
73</sect1>
Note: See TracBrowser for help on using the repository browser.