| 1 |
Gtk2::ImageView |
|---|
| 2 |
=============== |
|---|
| 3 |
|
|---|
| 4 |
Perl bindings to the GtkImageView image viewer widget |
|---|
| 5 |
Find out more about GtkImageView at http://trac.bjourne.webfactional.com/. |
|---|
| 6 |
|
|---|
| 7 |
The Perl bindings follow the C API very closely, and the C reference |
|---|
| 8 |
should be considered the canonical documentation. |
|---|
| 9 |
|
|---|
| 10 |
Be sure to check out the example programs in the "examples" directory. |
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
INSTALLATION |
|---|
| 14 |
------------ |
|---|
| 15 |
|
|---|
| 16 |
To install this module type the following: |
|---|
| 17 |
|
|---|
| 18 |
perl Makefile.PL |
|---|
| 19 |
make |
|---|
| 20 |
make test |
|---|
| 21 |
make install |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
To avoid installing to a system directory, since this is a beta release, |
|---|
| 25 |
you can change the installation prefix at Makefile.PL time with |
|---|
| 26 |
|
|---|
| 27 |
perl Makefile.PL PREFIX=/some/other/place |
|---|
| 28 |
|
|---|
| 29 |
This will install the module to the subdirectory lib/perl5 under the given |
|---|
| 30 |
prefix. If this is not already in perl's include path, you'll need to tell |
|---|
| 31 |
perl how to get to this library directory so you can use it; there are three |
|---|
| 32 |
ways: |
|---|
| 33 |
|
|---|
| 34 |
in your environment (the easiest): |
|---|
| 35 |
# assuming a bourne-style shell |
|---|
| 36 |
PERL5LIB=/some/other/place/lib/perl5/site_perl |
|---|
| 37 |
export PERL5LIB |
|---|
| 38 |
|
|---|
| 39 |
on the perl command line: |
|---|
| 40 |
perl -I /some/other/place/lib/perl5/site_perl yourscript |
|---|
| 41 |
|
|---|
| 42 |
in the code of your perl script: |
|---|
| 43 |
use lib '/some/other/place/lib/perl5/site_perl'; |
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
DEPENDENCIES |
|---|
| 47 |
------------ |
|---|
| 48 |
|
|---|
| 49 |
This module requires these other modules and libraries: |
|---|
| 50 |
|
|---|
| 51 |
Gtk2 >= 1.140 (Perl module) |
|---|
| 52 |
GtkImageView >= 1.5.0 (C library) |
|---|
| 53 |
|
|---|
| 54 |
In order to build it from source, you'll also need |
|---|
| 55 |
|
|---|
| 56 |
ExtUtils::Depends >= 0.2 |
|---|
| 57 |
ExtUtils::PkgConfig >= 1.03 |
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
COPYRIGHT AND LICENSE |
|---|
| 61 |
--------------------- |
|---|
| 62 |
|
|---|
| 63 |
Copyright (c) 2007 -- 2008 by Jeffrey Ratcliffe <Jeffrey.Ratcliffe@gmail.com> |
|---|
| 64 |
see AUTHORS for complete list of contributors |
|---|
| 65 |
|
|---|
| 66 |
This library is free software; you can redistribute it and/or |
|---|
| 67 |
modify it under the terms of the GNU Lesser General Public |
|---|
| 68 |
License as published by the Free Software Foundation; either |
|---|
| 69 |
version 3 of the License, or (at your option) any later version. |
|---|
| 70 |
|
|---|
| 71 |
This library is distributed in the hope that it will be useful, |
|---|
| 72 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 73 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 74 |
Library General Public License for more details. |
|---|
| 75 |
|
|---|
| 76 |
You should have received a copy of the GNU Lesser General Public License |
|---|
| 77 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 78 |
|
|---|