home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / perl5 / Gtk2 / Install / Files.pm < prev    next >
Encoding:
Perl POD Document  |  2006-03-29  |  1.1 KB  |  33 lines

  1. package Gtk2::Install::Files;
  2.  
  3. $self = {
  4.           '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 ',
  5.           'typemaps' => [
  6.                           'gtk2perl.typemap',
  7.                           'gdk.typemap',
  8.                           'gtk.typemap',
  9.                           'pango.typemap'
  10.                         ],
  11.           'deps' => [
  12.                       'Glib'
  13.                     ],
  14.           '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  '
  15.         };
  16.  
  17.  
  18. # this is for backwards compatiblity
  19. @deps = @{ $self->{deps} };
  20. @typemaps = @{ $self->{typemaps} };
  21. $libs = $self->{libs};
  22. $inc = $self->{inc};
  23.  
  24.     $CORE = undef;
  25.     foreach (@INC) {
  26.         if ( -f $_ . "/Gtk2/Install/Files.pm") {
  27.             $CORE = $_ . "/Gtk2/Install/";
  28.             last;
  29.         }
  30.     }
  31.  
  32. 1;
  33.