diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2003-02-25 15:32:13 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2003-02-25 15:32:13 +0000 |
commit | e2cbe9ff75842ecf47d9bff9c01edc3a9a4b5f1d (patch) | |
tree | 0cc3bef92efbdef1770395af7510e65f1bc7b0c7 /perl-install/printer/main.pm | |
parent | 81c43938c0cee5709189cf5c8def6d79a5057337 (diff) | |
download | drakx-e2cbe9ff75842ecf47d9bff9c01edc3a9a4b5f1d.tar drakx-e2cbe9ff75842ecf47d9bff9c01edc3a9a4b5f1d.tar.gz drakx-e2cbe9ff75842ecf47d9bff9c01edc3a9a4b5f1d.tar.bz2 drakx-e2cbe9ff75842ecf47d9bff9c01edc3a9a4b5f1d.tar.xz drakx-e2cbe9ff75842ecf47d9bff9c01edc3a9a4b5f1d.zip |
Prepared for LPRng and PDQ goint to Contribs or leaving the distro, "Change
Printing System" button only appears if at least one of them is manually
installed.
Diffstat (limited to 'perl-install/printer/main.pm')
-rw-r--r-- | perl-install/printer/main.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/printer/main.pm b/perl-install/printer/main.pm index 996b4730d..cd56f0aae 100644 --- a/perl-install/printer/main.pm +++ b/perl-install/printer/main.pm @@ -54,7 +54,13 @@ sub spooler { # LPRng is not officially supported any more since Mandrake 9.0, so # show it only in the spooler menu when it was manually installed. - return map { $spoolers{$_}{long_name} } qw(cups pdq), if_(files_exist(qw(/usr/lib/filters/lpf /usr/sbin/lpd)), 'lprng'); + + # PDQ is not officially supported any more since Mandrake 9.1, so + # show it only in the spooler menu when it was manually installed. + + return map { $spoolers{$_}{long_name} } qw(cups), + if_(files_exist(qw(/usr/bin/pdq)), 'pdq'), + if_(files_exist(qw(/usr/lib/filters/lpf /usr/sbin/lpd)), 'lprng'); } sub printer_type($) { |