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 / libgnome2-perl / README < prev    next >
Encoding:
Text File  |  2006-03-12  |  2.0 KB  |  71 lines

  1.  
  2.                     Gnome2
  3.                    --------
  4.  
  5. The Gnome2 module allows a perl developer to use the Gnome libraries.  Find out
  6. more about Gnome+ at http://www.gnome.org.
  7.  
  8. The perl bindings follow the C API very closely, and the C reference
  9. documentation should be considered the canonical source.
  10.  
  11. To discuss gtk2-perl, ask questions and flame/praise the authors, join
  12. gtk-perl-list@gnome.org at lists.gnome.org.
  13.  
  14. Also have a look at the gtk2-perl website and sourceforge project page,
  15. http://gtk2-perl.sourceforge.net
  16.  
  17.  
  18.                  Installation
  19.                 --------------
  20.  
  21. To install this module type the following:
  22.  
  23.    perl Makefile.PL
  24.    make
  25.    make test
  26.    make install
  27.  
  28.  
  29. To avoid installing to a system directory, since this is a beta release, you
  30. can change the installation prefix at Makefile.PL time with
  31.  
  32.    perl Makefile.PL PREFIX=/some/other/place
  33.  
  34. This will install the module to the subdirectory lib/perl5 under the given
  35. prefix.  If this is not already in perl's include path, you'll need to tell
  36. perl how to get to this library directory so you can use it; there are three
  37. ways:
  38.  
  39.   in your environment (the easiest):
  40.     PERL5LIB=/some/other/place/lib/perl5/site_perl:$PERL5LIB
  41.  
  42.   on the perl command line:
  43.     perl -I /some/other/place/lib/perl5/site_perl yourscript
  44.  
  45.   in the code of your perl script:
  46.     use lib '/some/other/place/lib/perl5/site_perl';
  47.  
  48.  
  49.                  Dependencies
  50.                 --------------
  51.  
  52. This module requires these other modules and libraries:
  53.  
  54.   perl >= 5.8.0
  55.   Glib >= 1.04 (perl module and requisite C libraries)
  56.   Gtk2 >= 1.00 (perl module and requisite C libraries)
  57.   Gnome2::Canvas >= 1.00 (perl module and requisite C libraries)
  58.   Gnome2::VFS >= 1.00 (perl module and requisite C libraries)
  59.   libgnomeui > 2.x (C library) and dependencies
  60.   libbonoboui > 2.x (C library) and dependencies
  61.  
  62. To build this module from source, you'll also need:
  63.  
  64.   ExtUtils::Depends >= 0.20
  65.   ExtUtils::PkgConfig >= 1.03
  66.  
  67.                    Copyright
  68.                   -----------
  69.  
  70. Copyright (C) 2003-2006 by the gtk2-perl team (see the file AUTHORS)
  71.