source: archive/kde/core/pre-install-config.xml@ 3f2db3a6

11.3 12.0 12.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 xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 3f2db3a6 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 17 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

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