source: lxqt/apps/juffed.xml@ e6441b2

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 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 nosym 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 e6441b2 was e6441b2, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Finish tagging for BLFS-7.8

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

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