Skip Menu |

This queue is for tickets about the GD CPAN distribution.

Report information
The Basics
Id: 39947
Status: resolved
Priority: 0/
Queue: GD

People
Owner: Nobody in particular
Requestors: bkinney [...] hmdc.harvard.edu
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: GD::Group not installed as part of GD-2.4.1
Date: Fri, 10 Oct 2008 09:19:38 -0400
To: bug-GD [...] rt.cpan.org
From: Bob Kinney <bkinney [...] hmdc.harvard.edu>
Hi: I've been working with the group at rpmforge trying to discover the reason why the latest rebuild of perl-GD they did was failing a dependency on GD::Group. After a little debugging, I believe I have tracked it down to the Makefile.PL not specifying 'GD/Group.pm' as something to be installed: WriteMakefile( 'NAME' => 'GD', 'VERSION_FROM' => 'GD.pm', 'PREREQ_PM' => { 'Math::Trig' => 0, }, 'PM' => { 'GD.pm' => '$(INST_LIBDIR)/GD.pm', 'GD/Polyline.pm' => '$(INST_LIBDIR)/GD/Polyline.pm', 'GD/Polygon.pm' => '$(INST_LIBDIR)/GD/Polygon.pm', 'GD/Simple.pm' => '$(INST_LIBDIR)/GD/Simple.pm', 'GD/Image.pm' => '$(INST_LIBDIR)/GD/Image.pm', 'qd.pl' => '$(INST_LIBDIR)/qd.pl'}, 'dist' => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz', 'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'}, 'LIBS' => [join(' ',$ENV{'GD_LIBS'},@LIBPATH,@LIBS)], 'INC' => join(' ',$ENV{'GD_INC'},@INC), 'PL_FILES' => {'bdf_scripts/bdf2gdfont.PLS' => 'bdf_scripts/bdf2gdfont.pl', 'GD/Image.pm.PLS' => 'GD/Image.pm', }, # 'CFLAGS' => '-nostdinclude', 'EXE_FILES' => ['bdf_scripts/bdf2gdfont.pl'], 'AUTHOR' => 'Lincoln Stein (lstein@cshl.org)', 'ABSTRACT' => 'Interface to Gd Graphics Library', $CAPI ? ('CAPI' => 'TRUE') : (), 'DEFINE' => $DEFINES, ); I've tested this also by installing via the CPAN module and I get the same result (GD::Group) is not installed. Regards, Bob -- Earl (Bob) Kinney Manager of Research Computing Harvard-MIT Data Center
On Fri Oct 10 09:20:09 2008, bkinney@hmdc.harvard.edu wrote: Show quoted text
> After a little debugging, I believe I have tracked it down to the > Makefile.PL not specifying 'GD/Group.pm' as something to be installed:
There's some other reports (43697, 40656) with different fixes, but I believe this is the right way to fix this bug. The following patch fixes it: diff -rNu GD-2.43.orig/Makefile.PL GD-2.43/Makefile.PL --- GD-2.43.orig/Makefile.PL 2009-06-10 07:40:09.000000000 -0700 +++ GD-2.43/Makefile.PL 2009-07-10 10:03:23.000000000 -0700 @@ -236,6 +236,7 @@ 'GD/Polygon.pm' => '$(INST_LIBDIR)/GD/Polygon.pm', 'GD/Simple.pm' => '$(INST_LIBDIR)/GD/Simple.pm', 'GD/Image.pm' => '$(INST_LIBDIR)/GD/Image.pm', + 'GD/Group.pm' => '$(INST_LIBDIR)/GD/Group.pm', 'qd.pl' => '$(INST_LIBDIR)/qd.pl'}, 'dist' => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz', 'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'},
Subject: [Autoreply] [rt.cpan.org #39947] GD::Group not installed as part of GD-2.4.1
Date: Fri, 10 Jul 2009 13:15:19 -0400
To: bug-GD [...] rt.cpan.org
From: bkinney [...] hmdc.harvard.edu
Bob is on vacation from July 6th through July 10th and will not be back into the office until July 13th. He will respond to your e-mail when he returns to the office. For technical questions, please send mail to: * support@help.hmdc.harvard.edu and another HMDC staff member will be able to assist you.
This should be fixed for quite some time already -- Reini Urban