source: archive/qscintilla.xml@ d63fed6

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 d63fed6 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • 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 "48ef316ff1e2a4d45a65d42be146ca39">
10 <!ENTITY qscintilla-size "2.6 MB">
11 <!ENTITY qscintilla-buildsize "28 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 <date>$Date$</date>
20 </sect1info>
21
22 <title>QScintilla-gpl-&qscintilla-version;</title>
23
24 <indexterm zone="qscintilla">
25 <primary sortas="a-qscintilla">qscintilla</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to QScintilla</title>
30
31 <para>
32 <application>QScintilla</application> is a port to
33 <application>Qt</application> of <ulink
34 url="http://www.scintilla.org/">Scintilla</ulink>. As well as features
35 found in standard text editing components, it includes features
36 especially useful when editing and debugging source code: language
37 syntax styling, error indicators, code completion, call tips, code
38 folding, margins can contain markers like those used in debuggers to
39 indicate breakpoints and the current line, recordable macros, multiple
40 views and, of course, printing.
41 </para>
42
43 &lfs82_checked;
44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>
50 Download (HTTP): <ulink url="&qscintilla-download-http;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download (FTP): <ulink url="&qscintilla-download-ftp;"/>
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download MD5 sum: &qscintilla-md5sum;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Download size: &qscintilla-size;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated disk space required: &qscintilla-buildsize;
71 </para>
72 </listitem>
73 <listitem>
74 <para>
75 Estimated build time: &qscintilla-time;
76 </para>
77 </listitem>
78 </itemizedlist>
79
80 <bridgehead renderas="sect3">QScintilla Dependencies</bridgehead>
81
82 <bridgehead renderas="sect4">Required</bridgehead>
83 <para role="required">
84 <xref linkend="chrpath"/> and
85 <xref linkend="qt5"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <ulink
91 url="http://riverbankcomputing.co.uk/software/pyqt/intro">PyQt</ulink>
92 (for <application>Python</application> <application>Qt</application>
93 bindings)
94 </para>
95
96 <para condition="html" role="usernotes">
97 User Notes: <ulink url="&blfs-wiki;/qscintilla"/>
98 </para>
99 </sect2>
100
101 <sect2 role="installation">
102 <title>Installation of QScintilla</title>
103
104 <note>
105 <para>
106 The instructions in this page are just for the
107 <application>QScintilla</application> application. Code is included in
108 the tarball for <application>QScintilla Qt Designer</application>
109 plugin and <application>Python</application> bindings.
110 </para>
111 </note>
112
113 <para>
114 Install <application>QScintilla</application> by running the following
115 commands:
116 </para>
117
118<screen><userinput>cd Qt4Qt5 &amp;&amp;
119qmake qscintilla.pro &amp;&amp;
120make</userinput></screen>
121
122 <para>
123 This package does not come with a test suite.
124 </para>
125
126 <para>
127 Now, as the <systemitem class="username">root</systemitem> user:
128 </para>
129
130<!-- For "DESTDIR" install, use: make INSTALL_ROOT=<destination> install -->
131<screen role="root"><userinput>make install &amp;&amp;
132ln -sfv $(readlink $QT5DIR/lib/libqscintilla2_qt5.so) $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;}
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.