home *** CD-ROM | disk | FTP | other *** search
- package Gtk2::Install::Files;
-
- $self = {
- 'inc' => '-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I./build ',
- 'typemaps' => [
- 'gtk2perl.typemap',
- 'gdk.typemap',
- 'gtk.typemap',
- 'pango.typemap'
- ],
- 'deps' => [
- 'Glib'
- ],
- 'libs' => '-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 '
- };
-
-
- # this is for backwards compatiblity
- @deps = @{ $self->{deps} };
- @typemaps = @{ $self->{typemaps} };
- $libs = $self->{libs};
- $inc = $self->{inc};
-
- $CORE = undef;
- foreach (@INC) {
- if ( -f $_ . "/Gtk2/Install/Files.pm") {
- $CORE = $_ . "/Gtk2/Install/";
- last;
- }
- }
-
- 1;
-