home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / perl5 / Gtk2 / Install / Files.pm < prev    next >
Encoding:
Perl POD Document  |  2008-11-28  |  1.2 KB  |  34 lines

  1. package Gtk2::Install::Files;
  2.  
  3. $self = {
  4.           'inc' => '-D_REENTRANT -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/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12   -I./build ',
  5.           'typemaps' => [
  6.                           'gtk2perl.typemap',
  7.                           'gdk.typemap',
  8.                           'gtk.typemap',
  9.                           'pango.typemap'
  10.                         ],
  11.           'deps' => [
  12.                       'Glib',
  13.                       'Cairo'
  14.                     ],
  15.           'libs' => '-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lgio-2.0 -lcairo -lpango-1.0 -lfreetype -lz -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lglib-2.0  '
  16.         };
  17.  
  18.  
  19. # this is for backwards compatiblity
  20. @deps = @{ $self->{deps} };
  21. @typemaps = @{ $self->{typemaps} };
  22. $libs = $self->{libs};
  23. $inc = $self->{inc};
  24.  
  25.     $CORE = undef;
  26.     foreach (@INC) {
  27.         if ( -f $_ . "/Gtk2/Install/Files.pm") {
  28.             $CORE = $_ . "/Gtk2/Install/";
  29.             last;
  30.         }
  31.     }
  32.  
  33. 1;
  34.