Orca enables users with limited vision, or no vision, to use the GNOME desktop and applications effectively. It provides a number of features, including magnification, focus tracking, braille output, automatic screen reading and more.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/orca/2.18/orca-2.18.1.tar.bz2
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/orca/2.18/orca-2.18.1.tar.bz2
Download MD5 sum: 764f170af318c3ffd63b9cdfdcd19248
Download size: 934 KB
Estimated disk space required: 17 MB
Estimated build time: 0.1 SBU
AT SPI-1.18.1, PyORBit-2.14.3, and Gnome-Python-2.18.2
intltool-0.35.5, GNOME Speech-0.4.16 (required for speech-enabled screen reading), GNOME Magnifier-0.14.6 (required for screen magnification), BRLTTY (required for braille output, must have Pyrex installed first)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/orca
Install Orca by running the following commands:
if [ $(pkg-config --variable=prefix ORBit-2.0) != "/usr" ]; then
    sed -i "s|PATH=\"|&$(pkg-config \
           --variable=prefix ORBit-2.0)/bin:|" \
        src/orca/orca.in
fi
./configure --prefix=/usr \
            --enable-pydoc &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install &&
install -v -m755 -d /usr/share/doc/orca-2.18.1 &&
install -v -m644    docs/pydoc/*.html \
                    /usr/share/doc/orca-2.18.1
        For full functionality of this package, you should install the libgail-gnome-1.18.0 package.
          if [ ... != "/usr" ]; then ...;
          fi: This command is used to add the GNOME prefix bin
          directory to the hard-coded PATH
          statement in the script if the GNOME prefix is anything other than
          /usr.
        
          --enable-pydoc: This
          parameter is used to build the documentation. Remove it if you
          don't want the documentation (also remove the installation
          commands).
        
Last updated on 2008-03-17 13:11:35 -0500