~ubuntu-branches/ubuntu/natty/libgraphics-colornames-perl/natty

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Manoj Srivastava
  • Date: 2004-10-01 12:49:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041001124942-3qlde82ir9850n0s
Tags: 1.05-1
* New upstream release. 
      - updates to POD
      - correction to Graphics::ColourNames
      - correction to README
      - a filehandle for a rgb.txt file can be specified
      - hooks to support CODE scheme types (as with module
        Graphics::ColorNames::GrayScale 2.00)
      - ColourNames.pm has same version of ColorNames.pm
      - added Graphics::ColourNames alias
      - minor changes to ColorNames.pm
      - corrected typo in REQUIREMENTS (wrong Perl version)
      - uses Module::Load for improved dynamic loading
      - EXISTS works across multiple color schemes
      - bug in FETCH that returned key has been fixed
      - corrected bad link in POD
      - rebuilt distribution with proper META.yml
      - added required rgb.txt for tests to MANIFEST and distro
      * now requires Perl 5.6.0
      - uses IO::File
      - option to parse an rgb.txt file
      - removed TODO from distribution
      - Netscape.pm, HTML.pm and Windows.pm warnings enabled
      - additions and corrections in POD
      - added Build.PL to distribution
      - added hex() and rgb() methods
      - created object-oriented interface
      - additions and corrections in POD

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.PL for Graphics-ColorNames package
2
 
# $Id: Makefile.PL,v 0.23 2001/04/18 02:41:58 rob Exp rob $
3
 
 
 
1
# Note: this file was auto-generated by Module::Build::Compat version 0.03
4
2
use ExtUtils::MakeMaker;
5
 
 
6
 
WriteMakefile(
7
 
    'PM' => {
8
 
       'ColorNames.pm'  => '$(INST_LIBDIR)/ColorNames.pm',
9
 
       'X.pm'           => '$(INST_LIBDIR)/ColorNames/X.pm',
10
 
       'HTML.pm'        => '$(INST_LIBDIR)/ColorNames/HTML.pm',
11
 
       'Netscape.pm'    => '$(INST_LIBDIR)/ColorNames/Netscape.pm',
12
 
       'Windows.pm'     => '$(INST_LIBDIR)/ColorNames/Windows.pm',
13
 
    },
14
 
    'NAME'              => 'Graphics::ColorNames',
15
 
    'VERSION_FROM'      => 'ColorNames.pm',
16
 
    'PREREQ_PM'         => {},
17
 
  ($] ge '5.005') ? (
18
 
    'AUTHOR'   => 'Robert Rothenberg (rrwo@cpan.org)',
19
 
    'ABSTRACT' => 'RGB values for standard color names',
20
 
  ) : (),
21
 
);
 
3
WriteMakefile
 
4
(
 
5
          'NAME' => 'Graphics::ColorNames',
 
6
          'VERSION_FROM' => 'lib/Graphics/ColorNames.pm',
 
7
          'PREREQ_PM' => {
 
8
                           'Carp' => '0',
 
9
                           'IO::File' => '0',
 
10
                           'Module::Load' => '0.1',
 
11
                           'Test' => '0',
 
12
                           'Test::More' => '0',
 
13
                           'base' => '0'
 
14
                         },
 
15
          'INSTALLDIRS' => 'site',
 
16
          'PL_FILES' => {}
 
17
        )
 
18
;