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

..03-May-2022-

examples/H07-Jan-2021-2,9232,271

t/H07-Jan-2021-667571

AUTHORSH A D27-Nov-2011738 1715

ChangeLogH A D27-Nov-20117.7 KiB297174

GladeXML.pmH A D07-Jan-202111.2 KiB37281

GladeXML.xsH A D27-Nov-20116.9 KiB243212

LICENSEH A D15-Oct-202024.6 KiB481398

MANIFESTH A D07-Jan-2021844 4039

MANIFEST.SKIPH A D27-Nov-2011105 1514

META.jsonH A D07-Jan-20211.1 KiB5049

META.ymlH A D07-Jan-2021665 3130

Makefile.PLH A D07-Jan-20214 KiB12294

NEWSH A D07-Jan-20211.6 KiB5838

READMEH A D07-Jan-20213.6 KiB11477

gladexmlperl.hH A D27-Nov-2011722 2314

gladexmlperl.typemapH A D27-Nov-2011413 2719

perl-Gtk2-GladeXML.spec.inH A D27-Nov-20112.5 KiB6856

README

1Gtk2::GladeXML version 1.008
2============================
3
4NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
5
6This module has been deprecated by the Gtk-Perl project.  This means that the
7module will no longer be updated with security patches, bug fixes, or when
8changes are made in the Perl ABI.  The Git repo for this module has been
9archived (made read-only), it will no longer possible to submit new commits to
10it.  You are more than welcome to ask about this module on the Gtk-Perl
11mailing list, but our priorities going forward will be maintaining Gtk-Perl
12modules that are supported and maintained upstream; this module is neither.
13
14Since this module is licensed under the LGPL v2.1, you may also fork this
15module, if you wish, but you will need to use a different name for it on CPAN,
16and the Gtk-Perl team requests that you use your own resources (mailing list,
17Git repos, bug trackers, etc.) to maintain your fork going forward.
18
19* Perl URL: https://gitlab.gnome.org/GNOME/perl-gtk2-gladexml
20* Upstream URL: https://gitlab.gnome.org/Archive/libglade
21* Last upstream version: 2.6.4
22* Last upstream release date: 2009-03-17
23* Migration path for this module: Gtk3::Builder
24* Migration module URL: https://metacpan.org/pod/Gtk3
25
26NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
27
28
29This package adds perl support for Glade 2.x to Gtk2-Perl.
30
31To discuss gtk2-perl, ask questions and flame/praise the authors,
32join gtk-perl-list@gnome.org at lists.gnome.org.
33
34Also have a look at the gtk2-perl website and sourceforge project page,
35http://gtk2-perl.sourceforge.net
36
37
38INSTALLATION
39------------
40
41To install this module type the following:
42
43   perl Makefile.PL
44   make
45   make test
46   make install
47
48
49To avoid installing to a system directory, since this is a beta release,
50you can change the installation prefix at Makefile.PL time with
51
52   perl Makefile.PL PREFIX=/some/other/place
53
54This will install the module to the subdirectory lib/perl5 under the given
55prefix.  If this is not already in perl's include path, you'll need to tell
56perl how to get to this library directory so you can use it; there are three
57ways:
58
59  in your environment (the easiest):
60    # assuming a bourne-style shell
61    PERL5LIB=/some/other/place/lib/perl5/site_perl
62    export PERL5LIB
63
64  on the perl command line:
65    perl -I /some/other/place/lib/perl5/site_perl yourscript
66
67  in the code of your perl script:
68    use lib '/some/other/place/lib/perl5/site_perl';
69
70
71DEPENDENCIES
72------------
73
74This module requires these other modules and libraries:
75
76  perl >= 5.8.0
77  Glib >= 1.02 (perl module)
78  Gtk2 >= 1.00 (perl module)
79  libglade-2.0 (C library)
80
81In order to build it from source, you'll also need
82
83  ExtUtils::Depends   >= 0.300
84  ExtUtils::PkgConfig >= 1.000
85
86
87BUG REPORTS
88-----------
89
90Please report bugs to the gnome-perl product in GNOME's Bugzilla:
91<http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-perl>
92
93
94COPYRIGHT AND LICENSE
95---------------------
96
97Copyright (C) 2003-2006 by rwmcfa1 at neces dot com and the gtk2-perl team.
98
99This library is free software; you can redistribute it and/or
100modify it under the terms of the GNU Library General Public
101License as published by the Free Software Foundation; either
102version 2 of the License, or (at your option) any later version.
103
104This library is distributed in the hope that it will be useful,
105but WITHOUT ANY WARRANTY; without even the implied warranty of
106MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
107Library General Public License for more details.
108
109You should have received a copy of the GNU Library General Public
110License along with this library; if not, see
111<https://www.gnu.org/licenses/>.
112
113# $Id$
114