home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / libgail-common / README < prev   
Encoding:
Text File  |  2007-01-09  |  1.7 KB  |  49 lines

  1. This directory contains the GAIL library.
  2.  
  3. GAIL provides accessibility support for gtk+ and libgnomecanvas by
  4. implementing AtkObjects for widgets in gtk+ and libgnomecanvas. The
  5. GAIL library is a GTK+ module. For example, if the module is loaded in
  6. a program which calls gtk_widget_get_accessible() for a GtkEntry an 
  7. instance of GailEntry is returned. This module is normally used with the
  8. atk-bridge GTK+ module from at-spi to allow an assistive technology, 
  9. e.g a screenreader, to query or drive the program.
  10.  
  11. For more information about GAIL and accessibility in GNOME, see:
  12.  http://developer.gnome.org/projects/gap
  13.  
  14. If you find any bugs in GAIL, please report them to http://bugzilla.gnome.org/.
  15. GAIL bugs are part of the 'atk' product in Bugzilla.
  16.  
  17. Dependencies
  18. ============
  19.  
  20. In order to get CVS gail installed on your system, you need to have
  21. the most recent CVS versions of gtk+ and libgnomecanvas installed as well.
  22. Note that  gtk+ requires glib/pango/atk and libgnomecanvas also requires
  23. libart, pangoft2 and gnome-common. 
  24.  
  25. Building
  26. ========
  27.  
  28. To compile a CVS version of gail on your system, you will need to take
  29. several steps to setup the tree for compilation.  You can do all these
  30. steps at once by running:
  31.  
  32.         cvsroot/gail# ./autogen.sh
  33.  
  34. Basically this does the following for you:
  35.  
  36.         cvsroot/gail# aclocal; automake; autoconf
  37.  
  38.         The above commands create the "configure" script.  Now you
  39.         can run the configure script in cvsroot/gail to create all
  40.         the Makefiles.
  41.  
  42. Before running autogen.sh or configure, make sure you have libtool
  43. in your path.
  44.  
  45. Note that autogen.sh runs configure for you.  If you wish to pass
  46. options like --prefix=/usr to configure you can give those options
  47. to autogen.sh and they will be passed on to configure.
  48.  
  49.