blob: f93c87108e3f424de62dff9e72bd91f7dff2276a (
plain)
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
|
import personal_desktop
from rhpl.translate import N_, _
import os
class InstallClass(personal_desktop.InstallClass):
# name has underscore used for mnemonics, strip if you dont need it
id = "workstation"
name = N_("_Workstation")
pixmap = "workstation.png"
description = N_("This option installs a graphical desktop "
"environment with tools for software "
"development and system administration. ")
pkgstext = N_("\tDesktop shell (GNOME)\n"
"\tOffice suite (OpenOffice.org)\n"
"\tWeb browser \n"
"\tEmail (Evolution)\n"
"\tInstant messaging\n"
"\tSound and video applications\n"
"\tGames\n"
"\tSoftware Development Tools\n"
"\tAdministration Tools\n")
sortPriority = 2
showLoginChoice = 0
def setGroupSelection(self, grpset, intf):
personal_desktop.InstallClass.setGroupSelection(self, grpset, intf)
grpset.selectGroup("emacs")
grpset.selectGroup("gnome-software-development")
grpset.selectGroup("x-software-development")
grpset.selectGroup("development-tools")
grpset.selectGroup("compat-arch-support", asMeta = 1, missingOk = 1)
grpset.selectGroup("compat-arch-development", asMeta = 1, missingOk = 1)
def __init__(self, expert):
personal_desktop.InstallClass.__init__(self, expert)
|