~ubuntu-branches/ubuntu/trusty/libpoe-component-server-simplehttp-perl/trusty

« back to all changes in this revision

Viewing changes to inc/Module/Install/Makefile.pm

  • Committer: Bazaar Package Importer
  • Author(s): Antonio Radici, Antonio Radici, gregor herrmann
  • Date: 2009-02-27 22:18:12 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090227221812-madgenfjjoqrigeh
Tags: 1.56-1
[ Antonio Radici ]
* New upstream release
* Add me to the Uploaders

[ gregor herrmann ]
* debian/copyright: update information for files under inc/*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
use vars qw{$VERSION $ISCORE @ISA};
9
9
BEGIN {
10
 
        $VERSION = '0.77';
 
10
        $VERSION = '0.79';
11
11
        $ISCORE  = 1;
12
12
        @ISA     = qw{Module::Install::Base};
13
13
}
64
64
        my $self  = shift;
65
65
        my $clean = $self->makemaker_args->{clean} ||= {};
66
66
          %$clean = (
67
 
                %$clean, 
 
67
                %$clean,
68
68
                FILES => join ' ', grep { length $_ } ($clean->{FILES} || (), @_),
69
69
        );
70
70
}
73
73
        my $self      = shift;
74
74
        my $realclean = $self->makemaker_args->{realclean} ||= {};
75
75
          %$realclean = (
76
 
                %$realclean, 
 
76
                %$realclean,
77
77
                FILES => join ' ', grep { length $_ } ($realclean->{FILES} || (), @_),
78
78
        );
79
79
}
124
124
 
125
125
        $self->configure_requires( 'ExtUtils::MakeMaker' => $ExtUtils::MakeMaker::VERSION =~ /^(\d+\.\d+)/ );
126
126
 
127
 
        # Generate the 
 
127
        # Generate the
128
128
        my $args = $self->makemaker_args;
129
129
        $args->{DISTNAME} = $self->name;
130
130
        $args->{NAME}     = $self->module_name || $self->name;
196
196
        my $top_class     = ref($self->_top) || '';
197
197
        my $top_version   = $self->_top->VERSION || '';
198
198
 
199
 
        my $preamble = $self->preamble 
 
199
        my $preamble = $self->preamble
200
200
                ? "# Preamble by $top_class $top_version\n"
201
201
                        . $self->preamble
202
202
                : '';