• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H07-Sep-2008-2,9312,273

t/H07-Sep-2008-667571

AUTHORSH A D26-Aug-2006738 1715

ChangeLogH A D07-Sep-20087.7 KiB297174

GladeXML.pmH A D07-Sep-200810.1 KiB32781

GladeXML.xsH A D07-May-20067 KiB243212

LICENSEH A D27-May-200324.7 KiB483400

MANIFESTH A D07-Sep-2008755 3938

MANIFEST.SKIPH A D24-Oct-2004105 1514

META.ymlH A D07-Sep-2008555 1716

Makefile.PLH A D07-Sep-20082.7 KiB9169

NEWSH A D07-Sep-20081.4 KiB5234

READMEH A D07-Sep-20082.5 KiB9059

gladexmlperl.hH A D18-May-2003819 2314

gladexmlperl.typemapH A D19-May-2003516 2719

perl-Gtk2-GladeXML.spec.inH A D24-Oct-20042.5 KiB6856

README

1Gtk2::GladeXML version 1.007
2============================
3
4This package adds perl support for Glade 2.x to Gtk2-Perl.
5
6To discuss gtk2-perl, ask questions and flame/praise the authors,
7join gtk-perl-list@gnome.org at lists.gnome.org.
8
9Also have a look at the gtk2-perl website and sourceforge project page,
10http://gtk2-perl.sourceforge.net
11
12
13INSTALLATION
14------------
15
16To install this module type the following:
17
18   perl Makefile.PL
19   make
20   make test
21   make install
22
23
24To avoid installing to a system directory, since this is a beta release,
25you can change the installation prefix at Makefile.PL time with
26
27   perl Makefile.PL PREFIX=/some/other/place
28
29This will install the module to the subdirectory lib/perl5 under the given
30prefix.  If this is not already in perl's include path, you'll need to tell
31perl how to get to this library directory so you can use it; there are three
32ways:
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
46DEPENDENCIES
47------------
48
49This module requires these other modules and libraries:
50
51  perl >= 5.8.0
52  Glib >= 1.02 (perl module)
53  Gtk2 >= 1.00 (perl module)
54  libglade-2.0 (C library)
55
56In order to build it from source, you'll also need
57
58  ExtUtils::Depends   >= 0.300
59  ExtUtils::PkgConfig >= 1.000
60
61
62BUG REPORTS
63-----------
64
65Please report bugs to the gnome-perl product in GNOME's Bugzilla:
66<http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-perl>
67
68
69COPYRIGHT AND LICENSE
70---------------------
71
72Copyright (C) 2003-2006 by rwmcfa1 at neces dot com and the gtk2-perl team.
73
74This library is free software; you can redistribute it and/or
75modify it under the terms of the GNU Library General Public
76License as published by the Free Software Foundation; either
77version 2 of the License, or (at your option) any later version.
78
79This library is distributed in the hope that it will be useful,
80but WITHOUT ANY WARRANTY; without even the implied warranty of
81MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
82Library General Public License for more details.
83
84You should have received a copy of the GNU Library General Public
85License along with this library; if not, write to the
86Free Software Foundation, Inc., 59 Temple Place - Suite 330,
87Boston, MA  02111-1307  USA.
88
89# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Glade/README,v 1.20 2008/09/07 20:10:48 kaffeetisch Exp $
90