Put gnome-lite and kde-lite on disc2 for ia64. The full gnome and kde

packages is causing the disc2 ISO to overflow in excess of 100MB.

MFC after: 2 days
This commit is contained in:
Marcel Moolenaar 2005-05-03 05:37:09 +00:00
parent 765bbb2127
commit d6ff5700fe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145814

View File

@ -42,9 +42,13 @@ def disc1_packages():
# For architectures that use a separate livefs, this is actually disc3.
def disc2_packages():
# X Desktops
pkgs = ['x11/kde3',
'x11/gnome2',
'x11-wm/afterstep',
if arch == 'ia64':
pkgs = ['x11/gnome2-lite',
'x11/kde-lite']
else:
pkgs = ['x11/gnome2',
'x11/kde3']
pkgs.extend(['x11-wm/afterstep',
'x11-wm/windowmaker',
'x11-wm/fvwm2',
# "Nice to have"
@ -94,7 +98,7 @@ def disc2_packages():
'security/portaudit',
'www/apache13',
'www/apache13-modssl',
'www/apache2']
'www/apache2'])
if arch == 'i386':
pkgs.extend(['comms/ltmdm',
'www/opera'])