Subversion Repositories livecd

Rev

Rev 357 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
349 beyerleu 1
########################################################################
2
#
3
#  LiveCD with gnome desktop
4
#
5
#  Urs Beyerle, ETHZ
6
#
7
########################################################################
8
 
9
part / --size 4096 --fstype ext4
10
 
11
########################################################################
12
# Include kickstart files
13
########################################################################
14
 
15
%include sl63-live-base.ks
16
%include sl63-extra-software.ks
17
%include sl63-doc.ks
18
 
357 beyerleu 19
# %include sl63-config-icewm.ks
358 beyerleu 20
# %include sl63-live-NONPAE.ks   # uncomment to build with nonpae kernel 
21
                                 # from elrepo (only for i386)  
349 beyerleu 22
 
357 beyerleu 23
 
349 beyerleu 24
########################################################################
25
# Packages
26
########################################################################
27
 
28
%packages
29
# packages removed from @base
30
-bind-utils
31
-ed
32
-kexec-tools
33
-system-config-kdump
34
-libaio
35
-libhugetlbfs
36
-microcode_ctl
37
-psacct
38
-quota
39
-autofs
40
-smartmontools
41
 
42
@basic-desktop
43
# package removed from @basic-desktop
44
-gok
45
 
46
@desktop-platform
47
# packages removed from @desktop-platform
48
-redhat-lsb
49
 
50
@dial-up
51
 
52
@fonts
53
 
54
@general-desktop
55
# package removed from @general-desktop
56
-gnome-backgrounds
57
-gnome-user-share
58
-nautilus-sendto
59
-orca
60
-rhythmbox
61
-vino
62
-compiz
63
-compiz-gnome
64
-evince-dvi
65
-gnote
66
-sound-juicer
67
 
68
# @input-methods
69
 
70
@internet-applications
71
# package added to @internet-applications
72
# xchat
73
# packages removed from @internet-applications
74
-ekiga
75
 
76
@internet-browser
77
 
78
### SL LiveCD specific changes
79
 
80
## packages to remove to save diskspace
81
-evolution
82
-evolution-help
83
-evolution-mapi
84
-scenery-backgrounds
85
-redhat-lsb-graphics
86
-qt3
87
-xinetd
88
-openswan
89
-pinentry-gtk
90
-seahorse
91
-hunspell-*
92
-words
93
-nano
94
-pinfo
95
-vim-common
96
-vim-enhanced
350 beyerleu 97
-samba-common
98
-samba-client
352 beyerleu 99
-mousetweaks
349 beyerleu 100
 
101
## remove some fonts and input methods
102
# remove Chinese font (Ming face) (8.9 MB)
103
# we still have wqy-zenhei-fonts 
104
-cjkuni-fonts-common
105
-cjkuni-uming-fonts
106
# remove Korean input method (2.1 MB)
107
-ibus-hangul
108
-libhangul
109
 
110
## packages to add
111
lftp
112
thunderbird
113
#@openafs-client
114
cups
115
cups-pk-helper
116
system-config-printer
117
system-config-printer-udev
118
xorg-x11-fonts-100dpi
119
xorg-x11-fonts-ISO8859-1-100dpi
120
xorg-x11-fonts-Type1
121
nautilus-sendto
122
spice-client
123
spice-xpi
124
phonon-backend-gstreamer
125
 
126
%end
127
 
128
 
129
########################################################################
130
# Post installation
131
########################################################################
132
 
133
%post
134
 
135
# remove folders/files that use a lot of diskspace
136
# and are not really needed for LiveCD
137
rm -rf /usr/share/doc/openafs-*
138
rm -rf /usr/share/doc/testdisk-*
139
 
140
%end