1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
#
# $Id: Makefile.PL,v 1.22 2004/09/13 11:19:24 mdprewitt Exp $
#
# mtop Makefile
#
# Run:
#
# perl Makefile.PL
# make
# make install
#
# To change the install prefix, pass a --prefix option to 'perl Makefile.PL' as in:
#
# perl Makefile.PL --prefix=/usr/local/
#
# --------------------------------------------------------------------------
#
# mtop - Shows the MySQL commands consuming the greatest time
# Copyright (C) 2002 Marc Prewitt/Chelsea Networks <mprewitt@chelsea.net>
#
# This file is part of mtop
#
# mtop is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# mtop is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
use strict;
use ExtUtils::MakeMaker;
use Getopt::Long;
my $opt_prefix;
GetOptions(
"prefix:s"=>\$opt_prefix,
);
my ( $y, $m, $d ) = (localtime(time))[5, 4, 3];
$y += 1900;
$m++;
$m = "0$m" if $m <= 9;
$d = "0$d" if $d <= 9;
my $release = "$y$m$d";
my $version = "0.6.6";
my %opts = (
ABSTRACT => 'A top program for MySQL which shows the longest running queries.',
AUTHOR => 'Marc Prewitt <mprewitt@chelsea.net>',
NAME => 'mtop',
DISTNAME => 'mtop',
VERSION => $version,
DEFINE => '-DMAKEFILE_PL_VER=' . (qw$Revision: 1.22 $)[1],
dist => { COMPRESS=>'gzip -9f', SUFFIX => 'gz',
ZIP=>'/usr/bin/zip',ZIPFLAGS=>'-rl'},
INST_SCRIPT => './blib/bin',
PL_FILES => { 'mtop.PL'=> 'mtop', 'mkill.PL'=>'mkill' },
EXE_FILES => [ 'mtop', 'mkill' ],
INSTALLDIRS => 'perl', # Ensures that PREFIX is used instead of SITEPREFIX
PREREQ_PM => { 'Curses' => 0,
'Getopt::Long' => 0,
'Net::Domain' => 0,
'DBI' => 0,
'DBD::mysql' => 0 }
);
# Uncomment the next line to customize the install location
# or run:
#
# perl Makefile.PL --prefix=/opt/mtop/
#
$opts{PREFIX} = "/usr/local/";
$opts{PREFIX} = $opt_prefix if $opt_prefix;
WriteMakefile( %opts );
sub MY::processPL {
my $self = shift;
chomp(my $text = $self->MM::processPL());
my @lines = split(/\n/, $text);
foreach (@lines) {
$_ .= " -v $version -r $release" if /\$\(PERL(RUNINST)?\)/;
}
return join("\n", @lines);
}
|