Subversion Repositories livecd

Rev

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