source: gnome/add/orca.xml@ aba407d

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 aba407d was 8afad080, checked in by Wayne Blaszczyk <wblaszcz@…>, 14 years ago

Updated to Orca-2.30.2.

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

  • Property mode set to 100644
File size: 5.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 orca-download-http "&gnome-download-http;/orca/&gnome-version;/orca-&orca-version;.tar.bz2">
8 <!ENTITY orca-download-ftp "&gnome-download-ftp;/orca/&gnome-version;/orca-&orca-version;.tar.bz2">
9 <!ENTITY orca-md5sum "8988f96533109c14cbd5ac8f2b0754f2">
10 <!ENTITY orca-size "2.2 MB">
11 <!ENTITY orca-buildsize "41 MB">
12 <!ENTITY orca-time "0.2 SBU">
13]>
14
15<sect1 id="orca" xreflabel="Orca-&orca-version;">
16 <?dbhtml filename="orca.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Orca-&orca-version;</title>
24
25 <indexterm zone="orca">
26 <primary sortas="a-Orca">Orca</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Orca</title>
31
32 <para><application>Orca</application> enables users with limited
33 vision, or no vision, to use the GNOME desktop and applications
34 effectively. It provides a number of features, including magnification,
35 focus tracking, braille output, automatic screen reading and more.</para>
36
37 &lfs65_built;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&orca-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&orca-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &orca-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &orca-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &orca-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &orca-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <bridgehead renderas="sect3">Orca Dependencies</bridgehead>
62
63 <bridgehead renderas="sect4">Required</bridgehead>
64 <para role="required"><xref linkend="at-spi"/>,
65 <xref linkend="dbus-python"/>, and
66 <xref linkend="gnome-python"/> (with
67 <xref linkend="pyorbit"/>)</para>
68
69 <bridgehead renderas="sect4">Optional</bridgehead>
70 <para role="optional"><ulink
71 url="http://www.mielke.cc/brltty/">BRLTTY</ulink> (required for braille
72 output, must have <ulink
73 url="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/">Pyrex</ulink>
74 installed first),
75 <ulink url="http://code.google.com/p/liblouis/">liblouis</ulink> (required
76 for contracted braille),
77 <xref linkend="gnome-mag"/> (required for screen magnification),
78 <xref linkend="gnome-python-desktop"/> (wnck module required for mouse
79 review),
80 <xref linkend="gnome-speech"/> (required for speech-enabled screen
81 reading)</para>
82
83 <para condition="html" role="usernotes">User Notes:
84 <ulink url="&blfs-wiki;/orca"/></para>
85
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of Orca</title>
90
91 <para>Install <application>Orca</application> by running the
92 following commands:</para>
93
94<screen><userinput>if [ $(pkg-config --variable=prefix ORBit-2.0) != "/usr" ]; then
95 sed -i "s|PATH=\"|&amp;$(pkg-config \
96 --variable=prefix ORBit-2.0)/bin:|" \
97 src/orca/orca.in
98fi
99
100./configure --prefix=$(pkg-config --variable=prefix ORBit-2.0) &amp;&amp;
101make</userinput></screen>
102
103 <para>This package does not come with a test suite.</para>
104
105 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
106
107<screen role='root'><userinput>make install</userinput></screen>
108
109 <!-- see NEWS: Fix for bgo#589244 - Remove libgail-gnome usage, use gail in
110 gtk+ instead.
111 <para>For full functionality of this package, you should install the
112 <xref linkend="libgail-gnome"/> package.</para>-->
113
114 </sect2>
115
116 <sect2 role="commands">
117 <title>Command Explanations</title>
118
119 <para><command>if [ ... != "/usr" ]; then ...; fi</command>: This command
120 is used to add the <application>GNOME</application> prefix
121 <filename class='directory'>bin</filename> directory to the hard-coded
122 <envar>PATH</envar> statement in the script if the
123 <application>GNOME</application> prefix is anything other than
124 <filename class='directory'>/usr</filename>.</para>
125
126 </sect2>
127
128 <sect2 role="content">
129 <title>Contents</title>
130
131 <segmentedlist>
132 <segtitle>Installed Program</segtitle>
133 <segtitle>Installed Libraries</segtitle>
134 <segtitle>Installed Directories</segtitle>
135
136 <seglistitem>
137 <seg>orca</seg>
138 <seg>None</seg>
139 <seg>/usr/lib/python&python-majorver;/site-packages/orca/scripts/{apps/{Banshee,
140 Thunderbird,evolution,gcalctool,gedit,gnome-window-properties,
141 packagemanager,pidgin,planner,rhythmbox,soffice,yelp},toolkits/{Gecko,
142 J2SE-access-bridge}},
143 <envar>$GNOME_PREFIX</envar>/share/orca/ui</seg>
144 </seglistitem>
145 </segmentedlist>
146
147 <variablelist>
148 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
149 <?dbfo list-presentation="list"?>
150 <?dbhtml list-presentation="table"?>
151
152 <varlistentry id="orca-prog">
153 <term><command>orca</command></term>
154 <listitem>
155 <para>is a GUI menu interface used to access and configure the
156 various functionality parameters provided for users with limited
157 vision.</para>
158 <indexterm zone="orca orca-prog">
159 <primary sortas="b-orca">orca</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
164 </variablelist>
165
166 </sect2>
167
168</sect1>
Note: See TracBrowser for help on using the repository browser.