#!/usr/bin/perl use strict; use inc::Module::Install; name ('Mail-Mbox-MessageParser'); author ('David Coppit '); abstract_from ('lib/Mail/Mbox/MessageParser.pm'); version_from ('lib/Mail/Mbox/MessageParser.pm'); license ('gpl'); build_requires ( 'Test::More' => 0, 'Text::Diff' => 0, ); requires ( 'Storable' => 0, 'FileHandle::Unget' => 0, ); # Optional features and their modules features ( 'Speed Tests' => [ -default => 0, # 0.6.0 => 0.006000. This is to prevent a spurious # warning in ExtUtils::MakeMaker recommends( 'Benchmark::Timer' => '0.006000' ), ], ); postamble ( ' testspeed :: pure_all PERL_DL_NONLAZY=1 $(PERLRUN) "-I$(INST_LIB)" \ "-I$(INST_ARCHLIB)" t/speed.pl ' ); include ('ExtUtils/AutoInstall.pm'); clean_files ('t/temp'); print "\n", '-'x78, "\n\n"; Configure_Programs(); print "\n", '-'x78, "\n\n"; auto_include_deps ( ); auto_install ( ); WriteAll(); Fix_PREOP(); exit; # -------------------------------------------------------------------------- sub Configure_Programs { my %info = ( 'diff' => { default => 'diff', argname => 'DIFF' }, 'grep' => { default => 'grep', argname => 'GREP', versions => { 'GNU' => { fetch => \&Get_GNU_Grep_Version, numbers => '[2.1,)', }, }, }, 'tzip' => { default => 'tzip', argname => 'TZIP' }, 'gzip' => { default => 'gzip', argname => 'GZIP' }, 'bzip' => { default => 'bzip2', argname => 'BZIP', versions => { 'bzip2' => { fetch => \&Get_Bzip2_Version, numbers => '[1.0,)', }, }, }, 'bzip2' => { default => 'bzip2', argname => 'BZIP2', versions => { 'bzip2' => { fetch => \&Get_Bzip2_Version, numbers => '[1.0,)', }, }, }, ); my %locations = Get_Program_Locations(\%info); Update_Config('lib/Mail/Mbox/MessageParser/Config.pm', \%locations); Update_Config('old/Mail/Mbox/MessageParser/Config.pm', \%locations) if -e 'old/Mail/Mbox/MessageParser.pm'; } # -------------------------------------------------------------------------- sub Update_Config { my $filename = shift; my %locations = %{ shift @_ }; my $code = _Read_Code($filename); foreach my $program (keys %locations) { if (defined $locations{$program}) { $locations{$program} = "\'$locations{$program}\'"; } else { $locations{$program} = "undef"; } } if ($code =~ /'programs'\s*=>\s*{\s*?\n([^}]+?) *}/s) { my $original_programs = $1; my $new_programs = ''; foreach my $program (sort keys %locations) { $new_programs .= " '$program' => $locations{$program},\n"; } $code =~ s/\Q$original_programs\E/$new_programs/; } else { die "Couldn't find programs hash in $filename"; } _Write_Code($filename, $code); } # -------------------------------------------------------------------------- sub _Read_Code { my $filename = shift; local $/ = undef; open SOURCE, $filename or die "Couldn't open file \"$filename\": $!"; my $code = ; close SOURCE; return $code; } # -------------------------------------------------------------------------- sub _Write_Code { my $filename = shift; my $code = shift; open SOURCE, ">$filename" or die "Couldn't open grepmail file \"$filename\": $!"; print SOURCE $code; close SOURCE; } # -------------------------------------------------------------------------- sub Fix_PREOP { print "Fixing PREOP in the Makefile to copy files with spaces during building\n"; my $commands = q{; \$(CP) t/mailboxes/*\\\\ * \$(DISTVNAME)/t/mailboxes; \$(CP) t/results/*\\\\ * \$(DISTVNAME)/t/results}; system "$^X -pi -e 's|^(PREOP\\s*=.*)|\$1$commands|' Makefile"; }