Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/soas-sugar.ks
blob: 321af810f5de800fcb89c432ea487cc159bd0a24 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
%include soas-base.ks

repo --name=sugar --baseurl=http://download.sugarlabs.org/soas/repositories/1/

%packages

# sugar!
sugar*

# e-mail client
alpine

# display manager
slim

# flash implementation
gnash-plugin

# exclude input methods
-scim*
-m17n*

# dictionaries are big
-aspell-*
-hunspell-*
-man-pages-*
-words

# no printing
-system-config-printer
-cups*
-foomatic*
-gutenprint*

# save more space
-samba*
-smolt*
-solar-backgrounds

# strip fedora trademarks
-fedora-logos
generic-logos

%end

%post
cat > /etc/sysconfig/desktop <<EOF
DISPLAYMANAGER=/usr/bin/slim-dynwm
EOF

cat >> /etc/rc.d/init.d/livesys << EOF

chkconfig --level 5 setroubleshoot off 2>/dev/null
chkconfig --level 5 sendmail off 2>/dev/null
chkconfig --level 5 bluetooth off 2>/dev/null
chkconfig --level 5 cupsd off 2>/dev/null

# disable screensaver locking
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-screensaver/lock_enabled false >/dev/null

# setup auto-login for slim
cat >> /etc/slim.conf << FOE
auto_login	yes
default_user	liveuser
FOE

# setup Xclients
echo "sugar" > /home/liveuser/.Xclients
chmod a+x /home/liveuser/.Xclients
chown liveuser:liveuser /home/liveuser/.Xclients

# setup support for QEMU
if [ \`grep -c QEMU /proc/cpuinfo\` -ne 0 ]; then
  cat > /etc/X11/xorg.conf <<FOE
Section "ServerLayout"
        Identifier     "Default layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
 
Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105+inet"
        Option      "XkbLayout" "us"
EndSection
 
Section "Monitor"
        Identifier   "Monitor0"
        ModelName    "Monitor 1024x768"
        HorizSync    31.5 - 61.0
        VertRefresh  50.0 - 75.0
        Option      "dpms"
EndSection
 
Section "Device"
        Identifier  "Videocard0"
        Driver      "cirrus"
EndSection
 
Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection
FOE
fi

# setup activity directory
mkdir -p /home/liveuser/Activities
chown liveuser:liveuser /home/liveuser/Activities
for bundle in \`find /usr/share/sugar/bundles -maxdepth 1\` ; do
  ln -s \$bundle /home/liveuser/Activities
done

EOF

%end

%post --nochroot

ACTIVITIES="
http://dev.laptop.org/~morgan/bundles/other/Paint-23.xo
http://dev.laptop.org/~cscott/bundles/Pippy-30.xo
http://sugarlabs.org/wiki/images/9/9f/InfoSlicer-1.xo
"

WD=$PWD
BUNDLES_DIR=$INSTALL_ROOT/usr/share/sugar/bundles

mkdir -p $BUNDLES_DIR
cd $BUNDLES_DIR

for url in $ACTIVITIES ; do
  curl -O $url
done

for file in *.xo ; do
    unzip $file
    rm $file
done

cd $WD

%end