Contents
$GNOME_PREFIX
/share/jar
The Java Access Bridge package contains Java components which connect the built-in accessibility support in Java Swing applications to the GNOME Accessibility framework, specifically the Assistive Technology Service Provider Interface (AT-SPI).
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/java-access-bridge/1.26/java-access-bridge-1.26.2.tar.bz2
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/java-access-bridge/1.26/java-access-bridge-1.26.2.tar.bz2
Download MD5 sum: baeac0a4f26f66996f62ffa88d6cd19e
Download size: 304 KB
Estimated disk space required: 9 MB
Estimated build time: 1.3 SBU
AT SPI-1.30.1 and either IcedTea6-1.9.7 or JDK-6 Update 18
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/java-access-bridge
Install Java Access Bridge by running the following commands:
./configure --prefix=$(pkg-config --variable=prefix ORBit-2.0) && make
This package does not come with a test suite.
Now, as the root
user:
make install && cat $(pkg-config --variable=prefix \ ORBit-2.0)/share/jar/accessibility.properties \ >> $JAVA_HOME/jre/lib/accessibility.properties && chmod -v 644 $JAVA_HOME/jre/lib/accessibility.properties && ln -v -sf $(pkg-config --variable=prefix \ ORBit-2.0)/share/jar/gnome-java-bridge.jar \ $JAVA_HOME/jre/lib/ext
--prefix=$(pkg-config --variable=prefix
ORBit-2.0)
: Setting the prefix using this parameter
instead of with $GNOME_PREFIX
will
ensure that the prefix is consistent with the installation
environment and the package will be installed in the correct
location.
cat $(pkg-config ...:
This command appends to (or creates) the Java runtime accessibility.properties
file required for
Java Access Bridge.
ln -v -sf $(pkg-config
...: This command creates a link from the Access
Bridge jar
file to the Java runtime
library extensions directory.
Before running a Java program with the Java Access Bridge, you should ensure that
your GNOME 2 installation
enables CORBA traffic over IP from the ORBit2 ORB. Do this by adding the following
line to ~/.orbitrc
using the
following command:
cat >> ~/.orbitrc << "EOF"
ORBIIOPIPv4=1
EOF
$GNOME_PREFIX
/share/jar
Last updated on 2010-09-08 06:26:20 +0000