From b76137a2bdfea73e0b12a85a11a2f429a0891b52 Mon Sep 17 00:00:00 2001 From: Sebastien Dupont Date: Thu, 18 Oct 2001 12:50:38 +0000 Subject: end of backend...... --- perl-install/standalone/drakfont | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index d816e9014..bb470052b 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -321,28 +321,25 @@ sub remove_fonts { my @toto; -e $drakfont_dir . "/remove" || mkdir_p($drakfont_dir."/remove"); foreach my $i (@font_list) { - $_ = $i; - if ( /.pfb$/ || /.pfm$/ || /.pfa$/ ) { - system ("cp $_ $drakfont_dir/remove "); - } - else { - rm_rf($i); - } - # print "nom complet : ".$i."\n"; - $i =~ s/\/\w*\.\w*//gi; - grep ( $i, (@list_dir)) or push @list_dir, $i; - # print "nom rep : " . $_."\n" foreach @list_dir; + $_ = $i; + if ( /.pfb$/ || /.pfm$/ || /.pfa$/ ) { + system ("cp $_ $drakfont_dir/remove "); + } else { + rm_rf($i); + } + $i =~ s/\/\w*\.\w*//gi; + grep ( $i, (@list_dir)) or push @list_dir, $i; } -e "/usr/share/ghostscript" and remove_gs_fonts(); foreach my $i (@list_dir) { - if (listlength all("$i") < 3) { - # remove this directory of the de fontpath - system("chkfontpath -r $i") or print "PERL::system command failed during chkfontpath\n"; - } else { - # # do type1inst in this path - system("cd $i && type1inst") or print "PERL::system command failed during cd or type1inst\n"; - } - } + if (listlength all("$i") < 3) { + # remove this directory of the de fontpath + system("chkfontpath -r $i") or print "PERL::system command failed during chkfontpath\n"; + } else { + # # do type1inst in this path + system("cd $i && type1inst") or print "PERL::system command failed during cd or type1inst\n"; + } + } system ("/etc/rc.d/init.d/xfs restart"); -e "/usr/share/ghostscript" and rm_rf("$drakfont_dir/remove"); } -- cgit v1.2.1