source: lxqt/apps/juffed.xml@ 8d427b0a

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 8d427b0a was 8d427b0a, checked in by Fernando de Oliveira <fernando@…>, 9 years ago
  • Qt-4.8.7, juffed-0.10.r71.gc3c1a3f, liblxqt-0.9.0 and pcmanfm-qt-0.9.0: minor fixes and reformatting.
  • 40. LXQt Applications: reorder.

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

  • Property mode set to 100644
File size: 6.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 "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, maching 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 &lfs77_checked; &gcc5_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"/> and
93 <xref linkend="qtermwidget"/>
94 </para>
95
96 <bridgehead renderas="sect4">Optional</bridgehead>
97 <para role="optional">
98 <xref linkend="desktop-file-utils"/> and
99 <ulink url="http://cihar.com/software/enca/">Enca</ulink>
100 </para>
101
102 <para condition="html" role="usernotes">
103 User Notes: <ulink url="&blfs-wiki;/juffed"/>
104 </para>
105 </sect2>
106
107 <sect2 role="installation">
108 <title>Installation of juffed</title>
109
110 <para>
111 For compilation with <application>Qt4</application>, see <quote>Command
112 Explanations</quote> below. Install
113 <application>juffed</application> by running the following commands:
114 </para>
115
116<screen><userinput>mkdir -v build &amp;&amp;
117cd build &amp;&amp;
118
119cmake -DCMAKE_BUILD_TYPE=Release \
120 -DCMAKE_INSTALL_PREFIX=/usr \
121 -DLIB_INSTALL_DIR=/usr/lib \
122 -DBUILD_TERMINAL=ON \
123 -DUSE_QT5=true \
124 .. &amp;&amp;
125
126make</userinput></screen>
127
128 <para>
129 The choice of <filename class="directory">/usr</filename> prefix is due
130 to the general characteristics of this program, which can be used
131 without <application>LXQt</application>.
132 </para>
133
134 <para>
135 This package does not come with a test suite.
136 </para>
137
138 <para>
139 Now, as the <systemitem class="username">root</systemitem> user:
140 </para>
141
142<screen role="root"><userinput>make install</userinput></screen>
143
144 </sect2>
145
146 <sect2 role="commands">
147 <title>Command Explanations</title>
148
149 <para>
150 <parameter>-DUSE_QT5=true</parameter>: This switch is used in order to
151 build this application linked to <application>Qt5</application>. Toggle
152 to <quote>false</quote>, if you prefer to use
153 <application>Qt4</application>.
154 </para>
155
156 </sect2>
157
158 <sect2 role="content">
159 <title>Contents</title>
160
161 <segmentedlist>
162 <segtitle>Installed Program</segtitle>
163 <segtitle>Installed Libraries</segtitle>
164 <segtitle>Installed Directory</segtitle>
165
166 <seglistitem>
167 <seg>
168 juffed
169 </seg>
170 <seg>
171 libjuff.so,
172 libjuffed-engine-qsci.so and
173 plugins under /usr/lib/juffed/plugins
174 </seg>
175 <seg>
176 /usr/{include,lib,share}/juffed
177 </seg>
178 </seglistitem>
179 </segmentedlist>
180
181 <variablelist>
182 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
183 <?dbfo list-presentation="list"?>
184 <?dbhtml list-presentation="table"?>
185
186 <varlistentry id="juffed-prog">
187 <term><command>juffed</command></term>
188 <listitem>
189 <para>
190 is a <application>Qt</application> based text editor.
191 </para>
192 <indexterm zone="juffed juffed-prog">
193 <primary sortas="b-juffed">juffed</primary>
194 </indexterm>
195 </listitem>
196 </varlistentry>
197
198 <varlistentry id="libjuff">
199 <term><filename class="libraryfile">libjuff.so</filename></term>
200 <listitem>
201 <para>
202 contains the <application>JuffEd</application> API functions.
203 </para>
204 <indexterm zone="juffed libjuff">
205 <primary sortas="c-libjuff">libjuff.so</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 <varlistentry id="libjuffed-engine-qsci">
211 <term><filename class="libraryfile">libjuffed-engine-qsci.so</filename></term>
212 <listitem>
213 <para>
214 contains the <application>QScintilla</application> bindings.
215 </para>
216 <indexterm zone="juffed libjuffed-engine-qsci">
217 <primary sortas="c-libjuffed-engine-qsci">libjuffed-engine-qsci.so</primary>
218 </indexterm>
219 </listitem>
220 </varlistentry>
221
222 </variablelist>
223
224 </sect2>
225
226</sect1>
Note: See TracBrowser for help on using the repository browser.