#!/usr/bin/perl -w # # This script asks the user the necessary questions for installing # makepp. # $Id: install.pl,v 1.7 2003/07/19 23:28:05 grholt Exp $ # use Config; use File::Copy; # # First make sure this version of perl is recent enough: # eval { require 5.00503; }; if ($@) { # Not recent enough? die "I need perl version 5.005_03 or newer. If you have it installed somewhere already, run this installation procedure with that perl binary, e.g., perl5.005 install.pl If you don't have a recent version of perl installed (what kind of system are you on?), get the latest from www.perl.com and install it. "; } $perlbin = $Config{'perlpath'}; print "Using perl in $perlbin.\n"; # # Load the version number so it can be automatically inserted into the # files. # open(VERSION, "VERSION") || die "You are missing the file VERSION. This should be part of the standard distribution.\n"; $VERSION = ; chomp $VERSION; close VERSION; # # Now figure out where everything goes: # $prefix = "/usr/local"; $bindir = shift(@ARGV) || read_with_prompt(" Makepp needs to know where you want to install it and its data files. makepp is written in perl, but there is no particular reason to install any part of it in the perl hierarchy; you can treat it as you would a compiled binary which is completely independent of perl. Where should the makepp executable be installed [$prefix/bin]? ") || "$prefix/bin"; $bindir =~ m@^(.*)/bin@ and $prefix = $1; # See if a prefix was specified. $datadir = shift @ARGV || read_with_prompt(" Makepp has a number of library files that it needs to install somewhere. Some of these are perl modules, but they can't be used by other perl programs, so there's no point in installing them in the perl modules hierarchy; they are simply architecture-independent data that needs to be stored somewhere. Where should the library files be installed [$prefix/share/makepp]? ") || "$prefix/share/makepp"; $mandir = shift @ARGV || read_with_prompt(" Where should the manual pages be installed? Enter \"none\" if you do not want the manual pages. Man directory [$prefix/man]: ") || "$prefix/man"; $htmldir = shift @ARGV || read_with_prompt(" Where should the HTML documentation be installed? Enter \"none\" if you do not want any documentation installed. HTML documentation directory [$prefix/share/makepp/html]: ") || "$prefix/share/makepp/html"; substitute_file("makepp", $bindir, 0755); substitute_file("recursive_makepp", $datadir, 0644); make_dir("$datadir/Signature"); foreach $module (qw(FileInfo FileInfo_makepp MakeEvent Glob Makefile Makesubs Rule Signature TextSubs Signature/exact_match Signature/target_newer Signature/c_compilation_md5 Signature/md5)) { copy("$module.pm", "$datadir/$module.pm"); chmod 0644, "$datadir/$module.pm"; } foreach $include (qw(c_compilation_md5 infer_objects makepp_builtin_rules makepp_default_makefile)) { copy("$include.mk", "$datadir/$include.mk"); chmod 0644, "$datadir/$include.mk"; } # # Install the man pages: # if ($mandir ne 'none') { make_dir("$mandir/man1"); foreach $file (glob("pod/*.pod")) { my $manfile = $file; $manfile =~ s/\.pod$/.1/; # Get the name of the man file. $manfile =~ s@^pod/@@; system("pod2man $file > $mandir/man1/$manfile 2>/dev/null"); # Ignore stderr because older versions of # pod2man (e.g., perl 5.006) don't understand # =head3. chmod 0644, "$mandir/man1/$manfile"; } } # # Now install the HTML pages. # if ($htmldir ne 'none') { make_dir($htmldir); system("cd pod; $Config{'perlpath'} ./pod2html $htmldir *.pod"); system("cd $htmldir; chmod 0644 *.html"); } # # Figure out whether we need to do anything about Digest::MD5. # eval "use Digest::MD5"; # See if it's already installed. if ($@) { print "\nIt looks like you don't have the perl module Digest::MD5 installed. Makepp likes to have Digest::MD5 installed because it is a better technique for checking whether files have changed than just looking at the dates. Makepp will work without it, however. If you would like this feature, you'll have to install this perl module. If you installed perl from a binary distribution (e.g., from a linux package), you can probably get a precompiled version of this module from the same place. Otherwise, you can get it from CPAN (http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.25.tar.gz). After you've downloaded it, do the following: gzip -dc Digest-MD5-2.25.tar.gz | tar xf - cd Digest-MD5-2.25 perl Makefile.PL make make test make install There is no need to reinstall makepp after installing Digest::MD5. "; } print "makepp successfully installed.\n"; # # This subroutine makes a copy of an input file, substituting all occurences # of @xyz@ with the perl variable $xyz. It also fixes up the header line # "#!/usr/bin/perl" if it sees one. # # Arguments: # a) The input file. # b) The output directory. # c) The protection to give the file when it's installed. # sub substitute_file { my ($infile, $outdir, $prot) = @_; open(INFILE, $infile) || die "$0: can't read file $infile--$!\n"; make_dir($outdir); open(OUTFILE, "> $outdir/$infile") || die "$0: can't write to $outdir/$infile--$!\n"; while (defined($_ = )) { s@^\#!\s*(\S+?)/perl@\#!$perlbin@; # Handle #!/usr/bin/perl. s/\@(\w+)\@/${$1}/g; # Substitute anything containg @xyz@. print OUTFILE $_; } close(OUTFILE); chmod $prot, "$outdir/$infile"; } # # Make sure a given directory exists. Makes it and its parents if necessary. # Arguments: the name of the directory. # sub make_dir { my $dirname = ''; foreach (split(/\//, $_[0])) { if ($_ ne '') { # Skip the top level / directory. $dirname .= $_; # Make the new directory name. -d $dirname or mkdir($dirname, 0755); } $dirname .= '/'; } } sub read_with_prompt { local $| = 1; # Enable autoflush on STDOUT. print @_; # Print the prompt. $_ = ; # Read a line. chomp $_; # # Expand environment variables and home directories. # s/\$(\w+)/$ENV{$1}/g; # Expand environment variables. if (s/^~(\w*)//) { # Is there a ~ expansion to do? if ($1 eq '') { $_ = "$ENV{HOME}$_"; } else { my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwnam($1); # Expand from the passwd file. if ($dir) { # Found it? $_ = "$dir$_"; } else { $_ = "~$1"; # Not found. Just put the ~ back. } } } return $_; }