source: x/lib/qscintilla.xml@ cfb32e2e

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 cfb32e2e was cfb32e2e, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

More tags
Archive freetts for 8,2 until we can get a better version.

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

  • Property mode set to 100644
File size: 6.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 qscintilla-download-http "&sourceforge-dl;/pyqt/QScintilla_gpl-&qscintilla-version;.tar.gz">
8 <!ENTITY qscintilla-download-ftp " ">
9 <!ENTITY qscintilla-md5sum "0d2b25ad607f93453c37478e83ec4640">
10 <!ENTITY qscintilla-size "2.5 MB">
11 <!ENTITY qscintilla-buildsize "27 MB (with documentation)">
12 <!ENTITY qscintilla-time "0.4 SBU (using parallelism=4; with documentation)">
13]>
14
15<sect1 id="qscintilla" xreflabel="qscintilla-&qscintilla-version;">
16 <?dbhtml filename="qscintilla.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>QScintilla-gpl-&qscintilla-version;</title>
24
25 <indexterm zone="qscintilla">
26 <primary sortas="a-qscintilla">qscintilla</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to QScintilla</title>
31
32 <para>
33 <application>QScintilla</application> is a port to
34 <application>Qt</application> of <ulink
35 url="http://www.scintilla.org/">Scintilla</ulink>. As well as features
36 found in standard text editing components, it includes features
37 especially useful when editing and debugging source code: language
38 syntax styling, error indicators, code completion, call tips, code
39 folding, margins can contain markers like those used in debuggers to
40 indicate breakpoints and the current line, recordable macros, multiple
41 views and, of course, printing.
42 </para>
43
44 &lfs82_checked;
45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47
48 <itemizedlist spacing="compact">
49 <listitem>
50 <para>
51 Download (HTTP): <ulink url="&qscintilla-download-http;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download (FTP): <ulink url="&qscintilla-download-ftp;"/>
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download MD5 sum: &qscintilla-md5sum;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Download size: &qscintilla-size;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated disk space required: &qscintilla-buildsize;
72 </para>
73 </listitem>
74 <listitem>
75 <para>
76 Estimated build time: &qscintilla-time;
77 </para>
78 </listitem>
79 </itemizedlist>
80
81 <bridgehead renderas="sect3">QScintilla Dependencies</bridgehead>
82
83 <bridgehead renderas="sect4">Required</bridgehead>
84 <para role="required">
85 <xref linkend="chrpath"/> and
86 <xref linkend="qt5"/>
87 </para>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <ulink
92 url="http://riverbankcomputing.co.uk/software/pyqt/intro">PyQt</ulink>
93 (for <application>Python</application> <application>Qt</application>
94 bindings)
95 </para>
96
97 <para condition="html" role="usernotes">
98 User Notes: <ulink url="&blfs-wiki;/qscintilla"/>
99 </para>
100 </sect2>
101
102 <sect2 role="installation">
103 <title>Installation of QScintilla</title>
104
105 <note>
106 <para>
107 The instructions in this page are just for the
108 <application>QScintilla</application> application. Code is included in
109 the tarball for <application>QScintilla Qt Designer</application>
110 plugin and <application>Python</application> bindings.
111 </para>
112 </note>
113
114 <para>
115 Install <application>QScintilla</application> by running the following
116 commands:
117 </para>
118
119<screen><userinput>cd Qt4Qt5 &amp;&amp;
120qmake qscintilla.pro &amp;&amp;
121make</userinput></screen>
122
123 <para>
124 This package does not come with a test suite.
125 </para>
126
127 <para>
128 Now, as the <systemitem class="username">root</systemitem> user:
129 </para>
130
131<screen role="root"><userinput>make install &amp;&amp;
132ln -sfv libqscintilla2_qt5.so.13.1.0 $QT5DIR/lib/libqt5scintilla2.so</userinput></screen>
133
134 <para>
135 If you wish to install the documentation, issue, as the <systemitem
136 class="username">root</systemitem> user:
137 </para>
138
139<screen role="root"><userinput>install -v -m755 -d $QT5DIR/share/doc/QScintilla-&qscintilla-version;/html &amp;&amp;
140install -v -m644 ../doc/html-Qt4Qt5/* \
141 $QT5DIR/share/doc/QScintilla-&qscintilla-version;/html</userinput></screen>
142
143 </sect2>
144 <sect2 role="commands">
145 <title>Command Explanations</title>
146
147 <para>
148 <command>ln -sfv ...</command>: This command creates a compatibility
149 symlink needed by some programs.
150 </para>
151
152 </sect2>
153
154 <sect2 role="content">
155 <title>Contents</title>
156
157 <segmentedlist>
158 <segtitle>Installed Programs</segtitle>
159 <segtitle>Installed Libraries</segtitle>
160 <segtitle>Installed Directories</segtitle>
161
162 <seglistitem>
163 <seg>
164 None
165 </seg>
166 <seg>
167 $QT5DIR/lib/libqt5scintilla2.so (link to libqscintilla2_qt5.so) and
168 $QT5DIR/lib/libqscintilla2_qt5.so
169 </seg>
170 <seg>
171 $QT5DIR/{include/Qsci,qsci,share/doc/QScintilla-&qscintilla-version;}/html
172 </seg>
173 </seglistitem>
174 </segmentedlist>
175
176 <variablelist>
177 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
178 <?dbfo list-presentation="list"?>
179 <?dbhtml list-presentation="table"?>
180
181 <varlistentry id="libqscintilla2_qt5">
182 <term><filename class="libraryfile">libqscintilla2_qt5.so</filename></term>
183 <listitem>
184 <para>
185 contains the <application>QScintilla</application>
186 <application>Qt5</application> API functions.
187 </para>
188 <indexterm zone="qscintilla libqscintilla2_qt5">
189 <primary sortas="c-libqscintilla2_qt5.so">libqscintilla2_qt5.so</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 </variablelist>
195
196 </sect2>
197
198</sect1>
Note: See TracBrowser for help on using the repository browser.