in reply to Re^2: Windows/Linux System Tray and tk
in thread Windows/Linux System Tray and tk

Perl/Gtk2 is based on the c Gtk2 libs, so you need to install the c libs before the Perl modules that interface to them. Your linux distribution may have the runtime Gtk2 (Gnome libs) as a separate package, with the "devel libs" in another rpm (or whatever). SO if you can run Gtk2 programs, but can't compile them, install the "gtk2-gnome devel" package.

If that is not possible, get the c libs yourself See Perl/Gtk2 Faq

The basic libs are only needed, not the entire Gnome library set. They must be installed in a certain order

pkgconfig cairo glib pango atk gtk2
You usually have to keep the same pkgconfig location.... defaults to /usr/local, but it's easiest to keep them in /usr, so when you configure them, do
./configure --prefix=/usr

Get the latest versions from Gtk+ downloads then install in the order above, then install the Perl modules in the same order.


I'm not really a human, but I play one on earth. Cogito ergo sum a bum

Replies are listed 'Best First'.
Re^4: Windows/Linux System Tray and tk
by deadpickle (Pilgrim) on Jul 16, 2007 at 02:29 UTC
    Simply enough, I did not think of looking in the Synaptic Package Manager. Ubuntu 7.04 includes this Perl Module in the SPM.