~ubuntu-branches/ubuntu/jaunty/libnet-ip-perl/jaunty

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Schutz
  • Date: 2006-11-10 20:20:26 UTC
  • mfrom: (2.1.3 feisty)
  • Revision ID: james.westby@ubuntu.com-20061110202026-ney2zu1lsdwkzid9
Tags: 1.25-2
* Correct a bug in the ipcount script which prevents the use
  of option -d; thanks to Thomas Parmelan for reporting the bug
  and providing a patch (Closes: Bug#397941)
* Urgency medium to fix an annoying bug in time for Etch.
* Upload sponsored thanks to Anibal Monsalve Salazar

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
use 5.008;
2
1
use ExtUtils::MakeMaker;
3
2
use Config;
4
3
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
24
23
};
25
24
 
26
25
$PARAM{'ABSTRACT_FROM'} = 'IP.pm';
27
 
$PARAM{'AUTHOR'}        = 'Manuel Valente <manuel@ripe.net>';
 
26
$PARAM{'AUTHOR'}        = 'Manuel Valente <manuel.valente@gmail.com>';
28
27
 
 
28
$PARAM{'clean'} = {FILES => "Net-IP.spec"};
29
29
 
30
30
WriteMakefile(
31
31
    'NAME'              => 'Net::IP',
32
32
    'VERSION_FROM'      => 'IP.pm',
33
33
    'PREREQ_PM'         => {},
34
 
#    'EXE_FILES'         => [qw(ipcount iptab)],
 
34
    'EXE_FILES'         => [qw(ipcount iptab)],
35
35
    'PL_FILES'          => { 'Net-IP.spec.PL'   =>      'Net-IP.spec' },
36
36
    %PARAM
37
37
);