1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4use Getopt::Long;
5
6# Sanity: die at first unknown option
7Getopt::Long::Configure qw/ pass_through /;
8
9GetOptions("localedir=s" => \my $localedir);
10
11sub MY::postamble {
12 return <<'MAKE_FRAG';
13instlibdir:
14 @echo '$(INSTALLSITELIB)'
15
16ifneq (,$(DESTDIR))
17ifeq (0,$(shell expr '$(MM_VERSION)' '>' 6.10))
18$(error ExtUtils::MakeMaker version "$(MM_VERSION)" is older than 6.11 and so \
19 is likely incompatible with the DESTDIR mechanism. Try setting \
20 NO_PERL_MAKEMAKER=1 instead)
21endif
22endif
23
24MAKE_FRAG
25}
26
27my %pm = (
28 'Git.pm' => '$(INST_LIBDIR)/Git.pm',
29 'Git/I18N.pm' => '$(INST_LIBDIR)/Git/I18N.pm',
30 'Git/SVN/Memoize/YAML.pm' => '$(INST_LIBDIR)/Git/SVN/Memoize/YAML.pm',
31 'Git/SVN/Fetcher.pm' => '$(INST_LIBDIR)/Git/SVN/Fetcher.pm',
32 'Git/SVN/Editor.pm' => '$(INST_LIBDIR)/Git/SVN/Editor.pm',
33 'Git/SVN/Prompt.pm' => '$(INST_LIBDIR)/Git/SVN/Prompt.pm',
34 'Git/SVN/Ra.pm' => '$(INST_LIBDIR)/Git/SVN/Ra.pm',
35);
36
37# We come with our own bundled Error.pm. It's not in the set of default
38# Perl modules so install it if it's not available on the system yet.
39eval { require Error };
40if ($@ || $Error::VERSION < 0.15009) {
41 $pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
42}
43
44# redirect stdout, otherwise the message "Writing perl.mak for Git"
45# disrupts the output for the target 'instlibdir'
46open STDOUT, ">&STDERR";
47
48WriteMakefile(
49 NAME => 'Git',
50 VERSION_FROM => 'Git.pm',
51 PM => \%pm,
52 PM_FILTER => qq[\$(PERL) -pe "s<\\Q++LOCALEDIR++\\E><$localedir>"],
53 MAKEFILE => 'perl.mak',
54 INSTALLSITEMAN3DIR => '$(SITEPREFIX)/share/man/man3'
55);