in reply to Re^2: Error while using GD::Simple
in thread Error while using GD::Simple

Please write to me if you need anymore information

No, that about covers it. Neither the GD ppm at uwinnipeg nor the one at bribes, include GD::Group.pm. I don't know why that happens - it's clearly needed for GD::Simple to be functional. GD, itself seems to be usable, but not GD::Simple ... can you use GD instead ?

I can't see why GD/Group is not being included in the GD ppm packages. Anyone ?

Cheers,
Rob

UPDATE: As an interim measure, simply grabbing a copy of Group.pm from the CPAN source distro, and placing it next to Simple.pm in your perl installation might work - if you really do need to use GD::Simple

Replies are listed 'Best First'.
Re^4: Error while using GD::Simple
by randyk (Parson) on Jun 16, 2009 at 03:34 UTC
    Thanks for pointing this out. The problem is that the Makefile.PL of the GD distribution specifies a PM attribute to WriteMakefile of what pm files to include, and this doesn't have Group.pm. It'd be a problem on any system, I would imagine. I've fixed this for the ppm packages in both the 5.10 and 5.8 uwinnipeg repositories.
      I had the same problem on Linux. I fixed it by adding
      'GD/Group.pm' => '$(INST_LIBDIR)/GD/Group.pm',
      on line 237 of the Makefile.PL and ran a manual install. It works now.