~ubuntu-branches/ubuntu/natty/xubuntu-artwork/natty

« back to all changes in this revision

Viewing changes to debian/xubuntu-gdm-theme.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-08-22 15:52:05 UTC
  • Revision ID: james.westby@ubuntu.com-20100822155205-6rovjibb6yv90zq4
Tags: 10.10.0
* usr/share/themes/MurrinaStormCloud,debian/xubuntu-artwork.install:
  drop this theme, was only kept for hardy -> lucid upgrades.
* usr/share/images, debian/control,debian/xubuntu-gdm-theme.install:
  drop xsplash support.
* Switch to dpkg-source 3.0 (native) format.
* debian/control:
  - bump Standards-Version to 3.9.1
  - drop pre-lucid conflicts
  - xubuntu-icon-theme depends on elementary-icon-theme instead of
    gnome-icon-theme.
* debian/xubuntu-gdm-theme.postinst: dropped, was only pre-lucid code.
* debian/copyright: cleaned.
* usr/share/pixmaps/xubuntu-logo.{png,svg}: use the new one.
* usr/share/xfce4/backdrops: drop all pre-jaunty wallpapers.
* usr/share/icons/elementaryXubuntu:
  - drop all icons, inherits from elementary
  - add xfce4-power-manager icons (in elementary/trunk, but not in 2.4).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
GDM_HOMEDIR="/var/lib/gdm/"
6
 
 
7
 
case "$1" in
8
 
        configure)
9
 
                if [ -d $GDM_HOMEDIR ]; then
10
 
                        if [ -f $GDM_HOMEDIR/.fehbg ]; then
11
 
                                rm $GDM_HOMEDIR/.fehbg
12
 
                        fi
13
 
                        if [ -f $GDM_HOMEDIR/.fehrc ]; then
14
 
                                rm $GDM_HOMEDIR/.fehrc
15
 
                        fi
16
 
                        if [ -d $GDM_HOMEDIR/.config/xfce4/ ]; then
17
 
                                rm -r $GDM_HOMEDIR/.config/xfce4/
18
 
                        fi
19
 
                fi
20
 
                ;;
21
 
esac
22
 
 
23
 
#DEBHELPER#