source: xincludes/setqt.xml@ ec7940be

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 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 ec7940be was ec7940be, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Rewrite Qt pages
Add corrections for some paths (e.g. man pages)
Tags

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

  • Property mode set to 100644
File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE note 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<!-- $LastChangedBy: $
9 $Date: $ -->
10
11<sect3>
12 <title>Choosing Qt Program Versions</title>
13
14 <para>If you install both Qt4 and Qt5, you can use some simple
15 scripts to select the currently active set of Qt programs. As the
16 <systemitem class="username">root</systemitem> user, create
17 the following scripts:</para>
18
19<screen role="root"><userinput>cat &gt; /usr/bin/setqt4 &lt;&lt; 'EOF'
20<literal>if [ "x$QT5DIR" != "x/usr" ]; then pathremove $QT5DIR/bin; fi
21if [ "x$QTDIR" != "x/usr" ]; then pathprepend $QTDIR/bin; fi
22echo $PATH</literal>
23EOF</userinput></screen>
24
25<screen role="root"><userinput>cat &gt; /usr/bin/setqt5 &lt;&lt; 'EOF'
26<literal>if [ "x$QTDIR" != "x/usr" ]; then pathremove $QTDIR/bin; fi
27if [ "x$QT5DIR" != "x/usr" ]; then pathprepend $QT5DIR/bin; fi
28echo $PATH</literal>
29EOF</userinput></screen>
30
31 <para>You should now be able to use the appropriate Qt version by running
32 <command>source setqt4</command> or <command>source setqt4</command> as
33 desired. (Setting the PATH wont work in a subshell.) Another technique that
34 can be used is to create appropriate alias additions to your ~/.bashrc like
35 <command>alias setqt4='source setqt4'</command>.</para>
36
37</sect3>
Note: See TracBrowser for help on using the repository browser.