source: ProjectBuilder/devel/pb-modules/Makefile.PL@ 915

Last change on this file since 915 was 915, checked in by Bruno Cornec, 14 years ago
  • Remove the dependency on GNU install in Makefile.PL in order to make it more portable (Solaris)
File size: 1.6 KB
Line 
1use 5.006001;
2use ExtUtils::MakeMaker;
3use strict;
4
5# See lib/ExtUtils/MakeMaker.pm for details of how to influence
6# the contents of the Makefile that is written.
7WriteMakefile(
8 NAME => 'PBPKG',
9 DISTNAME => 'PBPKG',
10 VERSION => 'PBVER',
11 INST_SCRIPT => 'blib/bin',
12 INSTALLDIRS => 'perl',
13 PREREQ_PM => {
14 #HTTP::Headers => 1.59,
15 #Template => 0,
16 }, # e.g., Module::Name => 1.1
17 #ABSTRACT_FROM => 'bin/pb', # retrieve abstract from module
18 AUTHOR => 'Bruno Cornec <bruno#project-builder.org>',
19 EXE_FILES => [ qw( bin/pbdistrocheck ) ],
20 MAN3PODS => { 'lib/ProjectBuilder/Distribution.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Distribution.$(MAN3EXT)',
21 'lib/ProjectBuilder/Conf.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Conf.$(MAN3EXT)',
22 'lib/ProjectBuilder/Display.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Display.$(MAN3EXT)',
23 'lib/ProjectBuilder/Base.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Base.$(MAN3EXT)', },
24);
25
26package MY;
27
28sub postamble {
29
30 # Determine location of etc conf files
31 my $text ="";
32
33 # Grab out any CONFDIR param
34 my $confdir = undef;
35
36 while (my $arg = shift @ARGV) {
37 my ($key, $value) = split /=/, $arg;
38 if ($key =~ /^CONFDIR$/) {
39 $confdir = $value;
40 }
41 }
42
43 my $etcdir = $confdir || "/usr/local/etc/pb";
44
45 # Use that conf dir info to modify Distribution.pm
46 system("perl -pi -e \"s~CCCC~$etcdir~\" lib/ProjectBuilder/Distribution.pm");
47
48 $text .= "install ::\n";
49 $text .= "\t".'mkdir -p $(DESTDIR)'."$etcdir\n";
50 $text .= "\t".'chmod 755 $(DESTDIR)'."$etcdir\n";
51 $text .= "\t".'cp etc/pb.conf $(DESTDIR)'."$etcdir\n";
52 return($text);
53}
Note: See TracBrowser for help on using the repository browser.