source: postlfs/editors/juffed.xml@ 1c09fe4

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 1c09fe4 was c143e70, checked in by Pierre Labastie <pieere@…>, 6 years ago

A few more tags

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

  • Property mode set to 100644
File size: 7.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 <!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 &lfs82_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>sed -i 's/"64"/""/' cmake/LibSuffix.cmake &amp;&amp;
121sed -i '/JUFFED_LIBRARY/s/)$/ qtermwidget5)/' plugins/terminal/CMakeLists.txt &amp;&amp;
122
123mkdir -v build &amp;&amp;
124cd build &amp;&amp;
125
126cmake -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \
127 -DCMAKE_BUILD_TYPE=Release \
128 -DBUILD_TERMINAL=ON \
129 -DUSE_QT5=true \
130 .. &amp;&amp;
131
132LIBRARY_PATH=$LXQT_PREFIX/lib make</userinput></screen>
133
134 <para>
135 The choice of <filename class="directory">/usr</filename> prefix is due
136 to the general characteristics of this program, which can be used
137 without <application>LXQt</application>.
138 </para>
139
140 <para>
141 This package does not come with a test suite.
142 </para>
143
144 <para>
145 Now, as the <systemitem class="username">root</systemitem> user:
146 </para>
147
148<screen role="root"><userinput>make install</userinput></screen>
149
150 </sect2>
151
152 <sect2 role="commands">
153 <title>Command Explanations</title>
154
155 <para>
156 <command>sed ... LibSuffix.cmake</command>: Removes the 64 from /lib64.
157 </para>
158
159 <para>
160 <command>sed -i '/JUFFED_LIBRARY/s/)$/ qtermwidget5)/'</command>: Allows this
161 package to build against current <xref linkend="qtermwidget"/>.
162 </para>
163
164 <para>
165 <envar>LIBRARY_PATH=$LXQT_PREFIX/lib</envar>: This environment
166 variable is needed for the linker to find a required library.
167 </para>
168
169 <para>
170 <parameter>-DBUILD_TERMINAL=ON</parameter>: This switch is used in order
171 to enable building the terminal. Toggle to <quote>OFF</quote> or remove
172 the switch, if you do not wish it.
173 </para>
174
175 <para>
176 <parameter>-DUSE_QT5=true</parameter>: This switch is used in order to
177 build this application linked to <application>Qt5</application>. Toggle
178 to <quote>false</quote>, if you prefer to use
179 <application>Qt4</application>.
180 </para>
181
182 </sect2>
183
184 <sect2 role="content">
185 <title>Contents</title>
186
187 <segmentedlist>
188 <segtitle>Installed Program</segtitle>
189 <segtitle>Installed Libraries</segtitle>
190 <segtitle>Installed Directory</segtitle>
191
192 <seglistitem>
193 <seg>
194 juffed
195 </seg>
196 <seg>
197 libjuff.so,
198 libjuffed-engine-qsci.so and
199 plugins under /usr/lib/juffed/plugins
200 </seg>
201 <seg>
202 /usr/{include,lib,share}/juffed
203 </seg>
204 </seglistitem>
205 </segmentedlist>
206
207 <variablelist>
208 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
209 <?dbfo list-presentation="list"?>
210 <?dbhtml list-presentation="table"?>
211
212 <varlistentry id="juffed-prog">
213 <term><command>juffed</command></term>
214 <listitem>
215 <para>
216 is a <application>Qt</application> based text editor.
217 </para>
218 <indexterm zone="juffed juffed-prog">
219 <primary sortas="b-juffed">juffed</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 <varlistentry id="libjuff">
225 <term><filename class="libraryfile">libjuff.so</filename></term>
226 <listitem>
227 <para>
228 contains the <application>JuffEd</application> API functions.
229 </para>
230 <indexterm zone="juffed libjuff">
231 <primary sortas="c-libjuff">libjuff.so</primary>
232 </indexterm>
233 </listitem>
234 </varlistentry>
235
236 <varlistentry id="libjuffed-engine-qsci">
237 <term><filename class="libraryfile">libjuffed-engine-qsci.so</filename></term>
238 <listitem>
239 <para>
240 contains the <application>QScintilla</application> bindings.
241 </para>
242 <indexterm zone="juffed libjuffed-engine-qsci">
243 <primary sortas="c-libjuffed-engine-qsci">libjuffed-engine-qsci.so</primary>
244 </indexterm>
245 </listitem>
246 </varlistentry>
247
248 </variablelist>
249
250 </sect2>
251
252</sect1>
Note: See TracBrowser for help on using the repository browser.