Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Building a road-load data file editor for automotive testing. Want it to run on both Unix and Win32. Solved the graphing on Unix easily via GD::Graph. But now I can't seem to port that to Win2K as there appears to be no PPM for it on ActiveState for Perl 5.8.0. Might there be a workaround for this?

Replies are listed 'Best First'.
Re: GD::Graph for Win32?
by Limbic~Region (Chancellor) on Jun 07, 2004 at 17:44 UTC
    Anonymous Monk,
    There are a lot of repositories out there besides AS. I just checked with the all knowing google.
    c:\perl> ppm ppm> rep add "apache" http://archive.apache.org/dist/perl/win32-bin/pp +ms/ ppm> install GD::Graph
    Untested but the repository is there so it should work.

    Cheers - L~R

Re: GD::Graph for Win32?
by thunders (Priest) on Jun 07, 2004 at 21:29 UTC

    You don't absolutely need a PPM package to install most modules. You just need a program to unzip/untar CPAN packages, either WinZip, or even the perl modules Archive::Zip and Archive::Tar (I think those modules are in the standard PPM repository). You'll also need nmake to build modules from Makefiles.

    Once you have all that, you should be able to use CPAN or even better CPANPLUS. At which point you should be able to install the majority of CPAN modules, pretty much any that don't require a GNU make or a compiler, or have UNIX specific code.