source: archive/gnome/gtk-vnc.xml@ 411e760

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 411e760 was 411e760, checked in by Krejzi <krejzi@…>, 11 years ago

Removal of GNOME, part 1.

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

  • Property mode set to 100644
File size: 6.9 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 gtk-vnc-download-http "&gnome-download-http;/gtk-vnc/0.5/gtk-vnc-&gtk-vnc-version;.tar.xz">
8 <!ENTITY gtk-vnc-download-ftp "&gnome-download-ftp;/gtk-vnc/0.5/gtk-vnc-&gtk-vnc-version;.tar.xz">
9 <!ENTITY gtk-vnc-md5sum "591f5c0efff931336cba5b56e0c64e0d">
10 <!ENTITY gtk-vnc-size "380 KB">
11 <!ENTITY gtk-vnc-buildsize "10 MB">
12 <!ENTITY gtk-vnc-time "0.2 SBU">
13]>
14
15<sect1 id="gtk-vnc" xreflabel="gtk-vnc-&gtk-vnc-version;">
16 <?dbhtml filename="gtk-vnc.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>gtk-vnc-&gtk-vnc-version;</title>
24
25 <indexterm zone="gtk-vnc">
26 <primary sortas="a-gtk-vnc">gtk-vnc</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Gtk VNC</title>
31
32 <para>
33 The <application>Gtk VNC</application> package contains a VNC viewer widget
34 for <application>GTK+</application>. It is built using coroutines allowing
35 it to be completely asynchronous while remaining single threaded.
36 </para>
37
38 &lfs72_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&gtk-vnc-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&gtk-vnc-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &gtk-vnc-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &gtk-vnc-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &gtk-vnc-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &gtk-vnc-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Gtk VNC Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="gtk3"/>,
79 <xref linkend="gnutls"/> and
80 <xref linkend="intltool"/>
81 </para>
82
83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
85 <xref linkend="gobject-introspection"/> and
86 <xref linkend="vala"/>
87 </para>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <xref linkend="cyrus-sasl"/>,
92 <xref linkend="nspr"/>,
93 <xref linkend="pulseaudio"/> and
94 <xref linkend="xulrunner"/>
95 </para>
96
97 <para condition="html" role="usernotes">User Notes:
98 <ulink url="&blfs-wiki;/gtk-vnc"/>
99 </para>
100 </sect2>
101
102 <sect2 role="installation">
103 <title>Installation of Gtk VNC</title>
104
105 <para>
106 Install <application>Gtk VNC</application> by running the following
107 commands:
108 </para>
109
110<screen><userinput>./configure --prefix=/usr \
111 --with-gtk=3.0 \
112 --enable-vala \
113 --without-sasl &amp;&amp;
114make</userinput></screen>
115
116 <para>
117 This package does not come with a testsuite.
118 </para>
119
120 <para>
121 Now, as the <systemitem class="username">root</systemitem> user:
122 </para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125
126 </sect2>
127
128 <sect2 role="commands">
129 <title>Command Explanations</title>
130
131 <para>
132 <parameter>--with-gtk=3.0</parameter>: This switch enables
133 building of the <application>GTK+ 3</application> library
134 instead of the <application>GTK+ 2</application> one.
135 </para>
136
137 <para>
138 <option>--enable-vala</option>: This switch enables
139 building of the Vala bindings. Remove if you don't have
140 <xref linkend="vala"/> installed.
141 </para>
142
143 <para>
144 <option>--without-sasl</option>: This switch disables the use of
145 <application>Cyrus SASL</application> for authentication. Remove
146 it if you have installed <application>Cyrus SASL</application>
147 and wish to enable it for authentication.
148 </para>
149
150 <para>
151 <option>--enable-plugin</option>: This switch enables building of
152 the browser plugin.
153 </para>
154
155 </sect2>
156
157 <sect2 role="content">
158 <title>Contents</title>
159
160 <segmentedlist>
161 <segtitle>Installed Program</segtitle>
162 <segtitle>Installed Libraries</segtitle>
163 <segtitle>Installed Directories</segtitle>
164
165 <seglistitem>
166 <seg>
167 gvnccapture
168 </seg>
169 <seg>
170 libgtk-vnc-2.0.so, libgvnc-1.0.so and libgvncpulse-1.0.so
171 </seg>
172 <seg>
173 /usr/include/gtk-vnc-2.0,
174 /usr/include/gvnc-1.0 and
175 /usr/include/gvncpulse-1.0
176 </seg>
177 </seglistitem>
178 </segmentedlist>
179
180 <variablelist>
181 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
182 <?dbfo list-presentation="list"?>
183 <?dbhtml list-presentation="table"?>
184
185 <varlistentry id="gvnccapture">
186 <term><command>gvnccapture</command></term>
187 <listitem>
188 <para>
189 is used to capture image from VNC server.
190 </para>
191 <indexterm zone="gtk-vnc gvnccapture">
192 <primary sortas="b-gvnccapture">gvnccapture</primary>
193 </indexterm>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry id="libgtk-vnc-2">
198 <term><filename class="libraryfile">libgtk-vnc-2.0.so</filename></term>
199 <listitem>
200 <para>
201 contains the <application>GTK+ 3</application> bindings for
202 <application>Gtk VNC</application>.
203 </para>
204 <indexterm zone="gtk-vnc libgtk-vnc-2">
205 <primary sortas="c-libgtk-vnc-2.0">libgtk-vnc-2.0.so</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 <varlistentry id="libgvnc-1">
211 <term><filename class="libraryfile">libgvnc-1.0.so</filename></term>
212 <listitem>
213 <para>
214 contains the GObject bindings for <application>Gtk VNC</application>.
215 </para>
216 <indexterm zone="gtk-vnc libgvnc-1">
217 <primary sortas="c-libgvnc-1.0">libgvnc-1.0.so</primary>
218 </indexterm>
219 </listitem>
220 </varlistentry>
221
222 <varlistentry id="libgvncpulse-1">
223 <term><filename class="libraryfile">libgvncpulse-1.0.so</filename></term>
224 <listitem>
225 <para>
226 is the <application>PulseAudio</application> bridge for
227 <application>Gtk VNC</application>.
228 </para>
229 <indexterm zone="gtk-vnc libgvncpulse-1">
230 <primary sortas="c-libgvncpulse-1.0">libgvncpulse-1.0.so</primary>
231 </indexterm>
232 </listitem>
233 </varlistentry>
234
235 </variablelist>
236
237 </sect2>
238
239</sect1>
Note: See TracBrowser for help on using the repository browser.