Changeset 2
- Timestamp:
- 01/23/07 10:38:27 (23 months ago)
- Location:
- 64studio/trunk
- Files:
-
- 6 modified
- 1 moved
-
debian/64studio-themes.postinst (modified) (2 diffs)
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (2 diffs)
-
tasksel-data/64studio-tasks.desc (modified) (8 diffs)
-
themes/icons/ardour-gtk.png (moved) (moved from 64studio/trunk/themes/icons/ardour.png)
-
utils/64studio-config (modified) (1 diff)
-
utils/64studio-upgrade (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
64studio/trunk/debian/64studio-themes.postinst
r1 r2 22 22 case "$1" in 23 23 configure) 24 25 # Add ardour icon26 ARDOUR=/usr/share/applications/ardour-gtk.desktop27 if ! grep -q "Icon=" $ARDOUR; then28 echo "Icon=/usr/share/icons/ardour.png" >> $ARDOUR29 fi30 24 31 25 # Place Bluefish in graphics … … 112 106 # generated by other debhelper scripts. 113 107 114 #DEBHELPER# 108 # Automatically added by dh_gconf 109 if [ "$1" = "configure" ] && which update-gconf-defaults >/dev/null 2>&1; then 110 update-gconf-defaults 111 fi 112 # End automatically added section 113 115 114 116 115 exit 0 -
64studio/trunk/debian/changelog
r1 r2 1 64studio (0.9.8) unstable; urgency=low 2 3 * Fixed syntax error in 64studio-config 4 5 -- Free Ekanayaka <free@64studio.com> Wed, 22 Nov 2006 20:26:21 +0100 6 7 64studio (0.9.7) unstable; urgency=low 8 9 * Comment apt sources if the network is not present at 10 install time (closes #214) 11 * Added dummy 64studio package to be used for upgrades 12 * Clean up upgrade script (it should not be used, but 13 just in case we need a hook) 14 15 -- Free Ekanayaka <free@64studio.com> Wed, 22 Nov 2006 20:15:05 +0100 16 17 64studio (0.9.6) unstable; urgency=low 18 19 * Do not exit the config script with an error if apt-get 20 update fails (closes #259) 21 * Added pnm2ppa (closes #260) 22 * Removed dependency of the themes package on ardour-gtk 23 24 -- Free Ekanayaka <free@64studio.com> Mon, 20 Nov 2006 12:57:05 +0100 25 26 64studio (0.9.5) unstable; urgency=low 27 28 * Fixed type in tasksel list (usb-view -> usbview) 29 * Added dcraw (closes #251) 30 * Don't modify ardour desktop file, it has been fixed in the 31 debian package 32 * Added mesa-utils and libgl1-mesa-dri (closes #242) 33 * Re-added kino, re-built from Ubuntu sources (closes #151) 34 * Added aspell, myspell, firefox and thunderbird locales for 35 German, French, Spanish and Italien (closes #240) 36 * Make sure that /proc is mounted before checking the network 37 at install time (closes #214) 38 39 -- Free Ekanayaka <free@64studio.com> Mon, 2 Oct 2006 08:51:48 +0200 40 1 41 64studio (0.9.4) unstable; urgency=low 2 42 -
64studio/trunk/debian/control
r1 r2 5 5 Build-Depends: debhelper (>= 4.0.0) 6 6 Standards-Version: 3.6.1 7 8 Package: 64studio 9 Architecture: all 10 Depends: 64studio-utils, 64studio-tasksel-data, 64studio-skel, 64studio-themes, 64studio-apt 11 Description: 64 Studio dummy package 12 This package is only meant for upgrades 7 13 8 14 Package: 64studio-utils … … 29 35 Package: 64studio-themes 30 36 Architecture: all 31 Depends: backgrounds, gnome-themes, polymer, ardour-gtk,bluefish, bug-buddy,37 Depends: backgrounds, gnome-themes, polymer, bluefish, bug-buddy, 32 38 qjackctl, evince, gnome-media, rosegarden4, timemachine, gnome-menus, gimp, 33 39 xpad, tagtool, eog, kcontrol, grub -
64studio/trunk/tasksel-data/64studio-tasks.desc
r1 r2 6 6 Test-new-install: install skip 7 7 Packages: list 8 64studio 8 9 64studio-apt 9 10 64studio-skel … … 94 95 cupsys-client 95 96 cupsys-driver-gimpprint 97 pnm2ppa 96 98 printconf 97 99 … … 107 109 gsfonts 108 110 laptop-detect 111 libgl1-mesa-dri 109 112 mdetect 113 mesa-utils 110 114 ttf-freefont 111 115 ttf-bitstream-vera … … 155 159 cinepaint 156 160 dia 161 dcraw 157 162 foomatic-db-gimp-print 158 163 gimp … … 165 170 imagemagick 166 171 inkscape 172 kino 167 173 ktoon 168 174 libwmf-bin … … 247 253 aspell 248 254 aspell-en 255 aspell-de 256 aspell-es 257 aspell-fr 258 aspell-it 249 259 myspell-en-gb 260 myspell-de-de 261 myspell-es 262 myspell-fr 263 myspell-it 250 264 251 265 Task: desktop … … 262 276 firefox 263 277 firefox-locale-en-gb 278 firefox-locale-de 279 firefox-locale-es-es 280 firefox-locale-fr 281 firefox-locale-it 264 282 gnome-core 265 283 gnome-utils … … 276 294 thunderbird 277 295 thunderbird-locale-en-gb 278 usb-view 296 thunderbird-locale-de 297 thunderbird-locale-es-es 298 thunderbird-locale-fr 299 thunderbird-locale-it 300 usbview 279 301 xpad 280 302 -
64studio/trunk/utils/64studio-config
r1 r2 48 48 fi 49 49 50 # If network is available, run apt-get update 50 # If network is available, run apt-get update, otherwise 51 # comment the source list 52 APT_SOURCE=/etc/apt/sources.list.d/64studio.list 53 if ! [ -e /proc/net/route ]; then 54 mount /proc 55 fi 51 56 if route -n | grep -q ^0.0.0.0; then 52 apt-get update 57 apt-get update || sed -i -e 's/^deb /#deb /g' $APT_SOURCE 58 else 59 sed -i -e 's/^deb /#deb /g' $APT_SOURCE 53 60 fi 61 -
64studio/trunk/utils/64studio-upgrade
r1 r2 1 1 #!/bin/sh 2 2 3 UNWANTED="\4 at \5 cinepaint \6 courier-mta \7 cron \8 exim4 \9 exim4-base \10 exim4-config \11 exim4-daemon-light \12 fluxbox \13 grip \14 k3b \15 kfilereplace \16 klinkstatus \17 kommander \18 quanta \19 nvu \20 toolame \21 xmms \22 xmms-jack \23 zynaddsubfx \24 "25 EXTRA=26 27 # Add xorg here as it hits etch28 for TASK in base kernel 64studio; do29 EXTRA="$EXTRA $(tasksel --task-packages $TASK)"30 done31 32 echo SET debconf/priority high | debconf-communicate > /dev/null 2>&133 34 apt-get install -y aptitude libsigc++-1.2-5c235 3 apt-get dist-upgrade -y 36 dpkg --force-all --purge xorg-common37 apt-get dist-upgrade -y38 apt-get install -f -y39 apt-get dist-upgrade -y40 apt-get install -f -y41 apt-get dist-upgrade -y42 aptitude remove -y $UNWANTED43 aptitude install -y $EXTRA44 45 apt-get install alsa-modules-2.6.13-1-multimedia-amd64-generic46 apt-get install ia32-libs47 48 CFG=/etc/bootsplash/themes/current/config/bootsplash-1024x768.cfg49 INITRD=/boot/initrd.img-2.6.13-1-multimedia-amd64-generic50 51 if [ -e $CFG ]; then52 if [ -e $INITRD.orig ] ; then53 mv $INITRD.orig $INITRD54 fi55 cp $INITRD $INITRD.orig56 splash -s -f $CFG >> $INITRD57 fi58 59 SYSV="rc rcS"60 for RC in $SYSV; do61 if [ -e /etc/init.d/$RC.orig ]; then62 mv /etc/init.d/$RC.orig /etc/init.d/$RC63 fi64 done65 66 /var/lib/dpkg/info/sysv-rc-bootsplash.postinst configure
