source: lxqt/apps/obconf-qt.xml@ 737f339

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind 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/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 737f339 was 737f339, checked in by Pierre Labastie <pieere@…>, 6 years ago

LXQt-0.12.0

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

  • Property mode set to 100644
File size: 5.4 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<!-- As of August 2017, downloads.lxqt.org is down. Use github archives
8 instead, but keep the old link in case the host become available again.
9 According to lxqt devs, they are working on it...
10 <!ENTITY obconf-qt-download-http "https://downloads.lxqt.org/obconf-qt/&obconf-qt-version;/obconf-qt-&obconf-qt-version;.tar.xz">-->
11 <!ENTITY obconf-qt-download-http "https://github.com/lxde/obconf-qt/releases/download/&obconf-qt-version;/obconf-qt-&obconf-qt-version;.tar.xz">
12 <!ENTITY obconf-qt-download-ftp " ">
13 <!ENTITY obconf-qt-md5sum "91e6e57e80380437b9db2622745dfd4e">
14 <!ENTITY obconf-qt-size "33 KB">
15 <!ENTITY obconf-qt-buildsize "3.0 MB">
16 <!ENTITY obconf-qt-time "0.2 SBU">
17]>
18
19<sect1 id="obconf-qt" xreflabel="obconf-qt-&obconf-qt-version;">
20 <?dbhtml filename="obconf-qt.html"?>
21
22 <sect1info>
23 <othername>$LastChangedBy$</othername>
24 <date>$Date$</date>
25 </sect1info>
26
27 <title>obconf-qt-&obconf-qt-version;</title>
28
29 <indexterm zone="obconf-qt">
30 <primary sortas="a-obconf-qt">obconf-qt</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to obconf-qt</title>
35
36 <para>
37 The <application>obconf-qt</application> package is an
38 <application>OpenBox</application> Qt based configuration tool.</para>
39
40 &lfs81_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&obconf-qt-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&obconf-qt-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &obconf-qt-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &obconf-qt-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &obconf-qt-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &obconf-qt-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">obconf-qt Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Required</bridgehead>
79 <para role="required">
80 <xref linkend="gtk2"/> (for <command>gtk-update-icon-cache</command>),
81 <xref linkend="hicolor-icon-theme"/>,
82 <xref linkend="liblxqt"/>, and
83 <xref linkend="openbox"/>
84 </para>
85
86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
88 <xref linkend="git"/> (to download translation files) or
89 <xref linkend="lxqt-l10n"/> (to add localization files)
90 </para>
91
92 <para condition="html" role="usernotes">
93 User Notes: <ulink url="&blfs-wiki;/obconf-qt"/>
94 </para>
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of obconf-qt</title>
99
100 <para>
101 Install <application>obconf-qt</application> by running the following
102 commands:
103 </para>
104
105<screen><userinput>mkdir -v build &amp;&amp;
106cd build &amp;&amp;
107
108cmake -DCMAKE_BUILD_TYPE=Release \
109 -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \
110 -DPULL_TRANSLATIONS=no \
111 .. &amp;&amp;
112make</userinput></screen>
113
114 <para>
115 This package does not come with a test suite.
116 </para>
117
118 <para>
119 Now, as the <systemitem class="username">root</systemitem> user:
120 </para>
121
122<screen role="root"><userinput>make install</userinput></screen>
123
124 <para>
125 If you installed in /opt, again as the
126 <systemitem class="username">root</systemitem> user:
127 </para>
128
129<screen role="root"><userinput>if [ "$LXQT_PREFIX" != /usr ]; then
130 ln -svf $LXQT_PREFIX/share/applications/obconf-qt.desktop \
131 /usr/share/applications
132fi</userinput></screen>
133
134 </sect2>
135
136 <sect2 role="commands">
137 <title>Command Explanations</title>
138
139 <para>
140 <parameter>-DPULL_TRANSLATIONS=no</parameter>: Removes the need for
141 <xref linkend="git"/>, which would otherwise be requested to download
142 the translation files.
143 </para>
144
145 </sect2>
146
147 <sect2 role="content">
148 <title>Contents</title>
149
150 <segmentedlist>
151 <segtitle>Installed Program</segtitle>
152 <segtitle>Installed Libraries</segtitle>
153 <segtitle>Installed Directory</segtitle>
154
155 <seglistitem>
156 <seg>
157 obconf-qt
158 </seg>
159 <seg>
160 None
161 </seg>
162 <seg>
163 None
164 </seg>
165 </seglistitem>
166 </segmentedlist>
167
168 <variablelist>
169 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
170 <?dbfo list-presentation="list"?>
171 <?dbhtml list-presentation="table"?>
172
173 <varlistentry id="obconf-qt-prog">
174 <term><command>obconf-qt</command></term>
175 <listitem>
176 <para>
177 is a Qt based GUI configuration tool for
178 <application>OpenBox</application>.
179 </para>
180 <indexterm zone="obconf-qt obconf-qt-prog">
181 <primary sortas="b-obconf-qt">obconf-qt</primary>
182 </indexterm>
183 </listitem>
184 </varlistentry>
185
186 </variablelist>
187
188 </sect2>
189
190</sect1>
Note: See TracBrowser for help on using the repository browser.