source: lxqt/apps/juffed.xml@ 43cca44

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.0 8.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 43cca44 was 822ec11, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to qterminal-0.7.1 and qtermwidget-0.7.1.
Update to pavucontrol-qt-0.2.0.
Update to lximage-qt-0.5.1.
Update to pcmanfm-qt-0.11.2.
Update to libfm-qt-0.11.2

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

  • Property mode set to 100644
File size: 7.0 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 <!ENTITY juffed-download-http "&sources-anduin-http;/juffed/juffed-&juffed-version;.tar.xz">
8 <!ENTITY juffed-download-ftp " ">
9 <!ENTITY juffed-md5sum "5d211f5aadcb3d7365b5a6127d3d275f">
10 <!ENTITY juffed-size "1.3 MB">
11 <!ENTITY juffed-buildsize "22 MB">
12 <!ENTITY juffed-time "0.8 SBU">
13]>
14
15<sect1 id="juffed" xreflabel="juffed-&juffed-version;">
16 <?dbhtml filename="juffed.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>juffed-&juffed-version;</title>
24
25 <indexterm zone="juffed">
26 <primary sortas="a-juffed">juffed</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to JuffEd</title>
31
32 <para>
33 The <application>JuffEd</application> package is a Qt based editor with
34 support for multiple tabs. It is simple and clear, but very powerful.
35 It supports language syntax highlighting, auto-indents in accordance with
36 file type, code blocks folding, matching braces highlighting with instant
37 jumps between them, powerful search and replacing text using regular
38 expressions (including multiline ones) with the opportunity to use
39 matches \1, \2, &hellip; in substitutions, a terminal emulator, saving
40 named sessions and many other features.
41 </para>
42
43 &lfs7a_checked;
44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46 <itemizedlist spacing="compact">
47 <listitem>
48 <para>
49 Download (HTTP): <ulink url="&juffed-download-http;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download (FTP): <ulink url="&juffed-download-ftp;"/>
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download MD5 sum: &juffed-md5sum;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download size: &juffed-size;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated disk space required: &juffed-buildsize;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Estimated build time: &juffed-time;
75 </para>
76 </listitem>
77 </itemizedlist>
78
79 <para>
80 The source tarball shown above was created by the BLFS team by cloning
81 the source code repository, finding the correct version to rename
82 accordingly the source code directory, removing <filename
83 class="directory">.git</filename> directory and <filename
84 class="directory">.gitignore</filename> file, and finally making the
85 compressed tarball. No other modification has been made.
86 </para>
87
88 <bridgehead renderas="sect3">JuffEd Dependencies</bridgehead>
89
90 <bridgehead renderas="sect4">Required</bridgehead>
91 <para role="required">
92 <xref linkend="qscintilla"/>
93 </para>
94
95 <bridgehead renderas="sect4">Recommended</bridgehead>
96 <para role="recommended">
97 <xref linkend="qtermwidget"/> (for the terminal)
98 </para>
99
100 <bridgehead renderas="sect4">Optional</bridgehead>
101 <para role="optional">
102 <xref linkend="desktop-file-utils"/> and
103 <ulink url="http://cihar.com/software/enca/">Enca</ulink>
104 </para>
105
106 <para condition="html" role="usernotes">
107 User Notes: <ulink url="&blfs-wiki;/juffed"/>
108 </para>
109 </sect2>
110
111 <sect2 role="installation">
112 <title>Installation of JuffEd</title>
113
114 <para>
115 For compilation with <application>Qt4</application>, see <quote>Command
116 Explanations</quote> below. Install
117 <application>JuffEd</application> by running the following commands:
118 </para>
119
120<screen><userinput>mkdir -v build &amp;&amp;
121cd build &amp;&amp;
122
123cmake -DCMAKE_BUILD_TYPE=Release \
124 -DCMAKE_INSTALL_PREFIX=/$LXQT_PREFIX \
125 -DBUILD_TERMINAL=ON \
126 -DUSE_QT5=true \
127 .. &amp;&amp;
128
129make</userinput></screen>
130
131 <para>
132 The choice of <filename class="directory">/usr</filename> prefix is due
133 to the general characteristics of this program, which can be used
134 without <application>LXQt</application>.
135 </para>
136
137 <para>
138 This package does not come with a test suite.
139 </para>
140
141 <para>
142 Now, as the <systemitem class="username">root</systemitem> user:
143 </para>
144
145<screen role="root"><userinput>make install</userinput></screen>
146
147 </sect2>
148
149 <sect2 role="commands">
150 <title>Command Explanations</title>
151
152 <para>
153 <parameter>-DBUILD_TERMINAL=ON</parameter>: This switch is used in order
154 to enable building the terminal. Toggle to <quote>OFF</quote> or remove
155 the switch, if you do not wish it.
156 </para>
157
158 <para>
159 <parameter>-DUSE_QT5=true</parameter>: This switch is used in order to
160 build this application linked to <application>Qt5</application>. Toggle
161 to <quote>false</quote>, if you prefer to use
162 <application>Qt4</application>.
163 </para>
164
165 </sect2>
166
167 <sect2 role="content">
168 <title>Contents</title>
169
170 <segmentedlist>
171 <segtitle>Installed Program</segtitle>
172 <segtitle>Installed Libraries</segtitle>
173 <segtitle>Installed Directory</segtitle>
174
175 <seglistitem>
176 <seg>
177 juffed
178 </seg>
179 <seg>
180 libjuff.so,
181 libjuffed-engine-qsci.so and
182 plugins under /usr/lib/juffed/plugins
183 </seg>
184 <seg>
185 /usr/{include,lib,share}/juffed
186 </seg>
187 </seglistitem>
188 </segmentedlist>
189
190 <variablelist>
191 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
192 <?dbfo list-presentation="list"?>
193 <?dbhtml list-presentation="table"?>
194
195 <varlistentry id="juffed-prog">
196 <term><command>juffed</command></term>
197 <listitem>
198 <para>
199 is a <application>Qt</application> based text editor.
200 </para>
201 <indexterm zone="juffed juffed-prog">
202 <primary sortas="b-juffed">juffed</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 <varlistentry id="libjuff">
208 <term><filename class="libraryfile">libjuff.so</filename></term>
209 <listitem>
210 <para>
211 contains the <application>JuffEd</application> API functions.
212 </para>
213 <indexterm zone="juffed libjuff">
214 <primary sortas="c-libjuff">libjuff.so</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 <varlistentry id="libjuffed-engine-qsci">
220 <term><filename class="libraryfile">libjuffed-engine-qsci.so</filename></term>
221 <listitem>
222 <para>
223 contains the <application>QScintilla</application> bindings.
224 </para>
225 <indexterm zone="juffed libjuffed-engine-qsci">
226 <primary sortas="c-libjuffed-engine-qsci">libjuffed-engine-qsci.so</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 </variablelist>
232
233 </sect2>
234
235</sect1>
Note: See TracBrowser for help on using the repository browser.