diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-09 11:56:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-09 11:56:54 +0000 |
commit | 251ee11862dac86408af70c72282765d334bfda4 (patch) | |
tree | b603f2096b4b575685a4321ff5c2a4c140623237 | |
parent | 77d16a3330cab8b9c86667220114542958e7a348 (diff) | |
download | drakx-251ee11862dac86408af70c72282765d334bfda4.tar drakx-251ee11862dac86408af70c72282765d334bfda4.tar.gz drakx-251ee11862dac86408af70c72282765d334bfda4.tar.bz2 drakx-251ee11862dac86408af70c72282765d334bfda4.tar.xz drakx-251ee11862dac86408af70c72282765d334bfda4.zip |
*** empty log message ***
-rw-r--r-- | perl-install/pkgs.pm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 02b571c25..ae4df8cee 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -12,6 +12,21 @@ use fs; use lang; use c; +#- lower bound on the left ( aka 90 means [90-100[ ) +my %compssList = ( + 90 => __("must have"), #- every install have these packages (unless hand de-selected in expert, or not enough room) + 80 => __("important"), #- every custom install have these packages (unless not enough space) + #- has minimum X install (XFree86 + icewm)(normal) + 70 => __("very nice"), #- KDE(normal) + 60 => __("nice"), #- gnome(normal) + 50 => __("interesting"), + 40 => __("interesting"), + 30 => __("maybe"), + 20 => __("maybe"), + 10 => __("useless"), + 0 => __("garbage"), +); + my @skip_list = qw( XFree86-8514 XFree86-AGX XFree86-Mach32 XFree86-Mach64 XFree86-Mach8 XFree86-Mono XFree86-P9000 XFree86-S3 XFree86-S3V XFree86-SVGA XFree86-W32 XFree86-I128 |