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
|
#!/usr/local/bin/perl -w
BEGIN {exec('perl5.002',$0,@ARGV) unless ($] >= 5.002)}
use Config;
use Getopt::Long;
$opt_perl = "";
$opt_site = "";
$opt_man = "";
GetOptions('site','perl','inc','man');
my %dirs = ();
sub maybe
{
foreach (@_)
{
$dirs{$_} = 0 if (defined($_) && -d $_ && !exists $dirs{$_});
}
}
maybe($Config{'installarchlib'},$Config{'installprivlib'}) if ($opt_perl);
maybe($Config{'installsitearch'},$Config{'installsitelib'}) if ($opt_site);
my %done = ();
my $dir;
foreach $dir (keys %dirs)
{
my $file;
foreach $file ('Tk.pm','Tk','auto/Tk')
{
my $path = "$dir/$file";
next if (exists $done{$path});
$done{$path} = 0;
if (-f $path)
{
print "rm -f $path\n";
}
elsif (-d $path)
{
print "rm -rf $path\n";
}
}
}
if ($opt_man)
{
my $path;
foreach $path (<$Config{'installman3dir'}/Tk::*.$Config{'man3ext'}>)
{
if (-f $path)
{
print "rm -f $path\n";
}
}
}
|