--- debian-edu-artwork-0.0.32.orig/debian/update-artwork
+++ debian-edu-artwork-0.0.32/debian/update-artwork
@@ -0,0 +1,39 @@
+#! /bin/sh
+set -e
+
+change_ldm_background() {
+    update-alternatives --install /usr/share/ldm/themes/default \
+        ldm-theme /usr/share/ldm/themes/debian-edu 80
+}
+
+restore_ldm_background() {
+    update-alternatives --remove ldm-theme /usr/share/ldm/themes/debian-edu
+}
+
+change_grub_background() {
+    if [ -f /boot/grub/grub.cfg ] && ! grep -q 'debian-edu-splash-grub.png' /boot/grub/grub.cfg ; then
+	## update-grub should find our splash image and update grub.cfg:
+	update-grub || true
+    fi
+}
+
+restore_grub_background() {
+    if [ -f /boot/grub/grub.cfg ] && grep -q 'debian-edu-splash-grub.png' /boot/grub/grub.cfg ; then
+	## update-grub should revert grub.cfg to point to the default image: 
+	update-grub || true
+    fi
+}
+
+## change_kdm_theme() and restore_kdm_theme() are not needed anymore,
+## our theme is added to /etc/default/kdm.d/
+
+case "$1" in
+  configure)
+    change_ldm_background
+    change_grub_background
+    ;;
+  remove)
+    restore_ldm_background
+    restore_grub_background
+    ;;
+esac
--- debian-edu-artwork-0.0.32.orig/debian/control
+++ debian-edu-artwork-0.0.32/debian/control
@@ -0,0 +1,17 @@
+Source: debian-edu-artwork
+Section: graphics
+Priority: optional
+Maintainer: Debian Edu developers <debian-edu@lists.debian.org>
+Uploaders: Petter Reinholdtsen <pere@debian.org>, Steffen Joeris <white@debian.org>, Holger Levsen <holger@debian.org>, Morten Werner Forsbring <werner@debian.org>, Vagrant Cascadian <vagrant@debian.org>, Jonas Smedegaard <dr@jones.dk>, Andreas B. Mundt <andi.mundt@web.de>
+Build-Depends: debhelper (>= 7), cdbs, libbogl-dev, imagemagick, librsvg2-bin
+Standards-Version: 3.9.1
+XS-DM-Upload-Allowed: yes
+
+Package: debian-edu-artwork
+Architecture: all
+Depends: ${misc:Depends}, libconfig-inifiles-perl
+Suggests: grub (>= 0.95+cvs20040624-10), kdm
+Conflicts: grub (<< 0.97-39), desktop-base (<< 5.0.5)
+Description: Debian Edu themes and artwork
+ This package contains Debian Edu themes and artwork.
+
--- debian-edu-artwork-0.0.32.orig/debian/debian-edu-artwork.preinst
+++ debian-edu-artwork-0.0.32/debian/debian-edu-artwork.preinst
@@ -0,0 +1,14 @@
+#!/bin/sh 
+
+set -e
+
+if [ "$1" = install ] || [ $1 = upgrade ]
+then
+	dpkg-divert --package debian-edu-artwork --divert \
+		/usr/share/gdm/defaults.conf.orig --rename /usr/share/gdm/defaults.conf
+	dpkg-divert --package debian-edu-artwork --divert \
+		/usr/share/desktop-base/grub_background.sh.orig --rename /usr/share/desktop-base/grub_background.sh
+
+fi
+
+#DEBHELPER#
--- debian-edu-artwork-0.0.32.orig/debian/rules
+++ debian-edu-artwork-0.0.32/debian/rules
@@ -0,0 +1,24 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/class/gnome.mk
+
+DEB_DH_MAKESHLIBS_ARGS_ALL = -n
+DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/tmp
+DEB_DH_GCONF_ARGS= --priority=50
+
+pkgdir      := /usr/share/debian-edu-artwork
+install/debian-edu-artwork::
+	install -d debian/$(cdbs_curpkg)$(pkgdir)
+	install debian/update-artwork debian/$(cdbs_curpkg)$(pkgdir)
+
+binary-install/debian-edu-artwork::
+	cd debian/debian-edu-artwork/usr/share/gconf/defaults && \
+                mv 50_debian-edu-artwork 50_debian-edu-artwork.entries 
+
+new-upstream-version:
+	svn export . $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
+	GZIP=--best tar czf $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz --exclude=debian $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
+	(cd $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION) ; debuild -us -uc -S)
+	rm -rf $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
--- debian-edu-artwork-0.0.32.orig/debian/watch
+++ debian-edu-artwork-0.0.32/debian/watch
@@ -0,0 +1,9 @@
+# Tarballs are generated as needed from
+# svn://svn.debian.org/debian-edu/trunk/src/debian-edu-artwork
+
+version=3
+
+# A newer version may be uploaded to Skolelinux repositories before
+# Debian, so check for it:
+http://ftp.skolelinux.org/skolelinux/pool/local/d/debian-edu-artwork/debian-edu-artwork_(.*)\.orig\.tar\.gz
+http://ftp.debian.org/debian/pool/main/d/debian-edu-artwork/debian-edu-artwork_(.*)\.orig\.tar\.gz
--- debian-edu-artwork-0.0.32.orig/debian/debian-edu-artwork.links
+++ debian-edu-artwork-0.0.32/debian/debian-edu-artwork.links
@@ -0,0 +1,6 @@
+/usr/share/ldm/themes/ltsp/bg.png /usr/share/ldm/themes/debian-edu/bg.png
+/usr/share/ldm/themes/ltsp/host.png /usr/share/ldm/themes/debian-edu/host.png
+/usr/share/ldm/themes/ltsp/language.png /usr/share/ldm/themes/debian-edu/language.png
+/usr/share/ldm/themes/ltsp/reboot.png /usr/share/ldm/themes/debian-edu/reboot.png
+/usr/share/ldm/themes/ltsp/session.png /usr/share/ldm/themes/debian-edu/session.png
+/usr/share/ldm/themes/ltsp/shutdown.png /usr/share/ldm/themes/debian-edu/shutdown.png
--- debian-edu-artwork-0.0.32.orig/debian/debian-edu-artwork.prerm
+++ debian-edu-artwork-0.0.32/debian/debian-edu-artwork.prerm
@@ -0,0 +1,11 @@
+#! /bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+  remove)
+    /usr/share/debian-edu-artwork/update-artwork remove
+    ;;
+esac
--- debian-edu-artwork-0.0.32.orig/debian/copyright
+++ debian-edu-artwork-0.0.32/debian/copyright
@@ -0,0 +1,32 @@
+This package was debianized by Petter Reinholdtsen <pere@debian.org> on
+Mon, 01 Aug 2005 08:43:22 +0200.
+
+Upstream Author: Petter Reinholdtsen <pere@debian.org>
+
+License:
+
+GNU General Public License
+
+A copy of the GPL is available in /usr/share/common-licenses/GPL.
+
+bogl bdf font file have the following licence:
+
+Copyright 1984-1989, 1994 Adobe Systems Incorporated.
+Copyright 1988, 1994 Digital Equipment Corporation.
+
+Adobe is a trademark of Adobe Systems Incorporated which may be
+registered in certain jurisdictions.
+Permission to use these trademarks is hereby granted only in
+association with the images described in this file.
+
+Permission to use, copy, modify, distribute and sell this software
+and its documentation for any purpose and without fee is hereby
+granted, provided that the above copyright notices appear in all
+copies and that both those copyright notices and this permission
+notice appear in supporting documentation, and that the names of
+Adobe Systems and Digital Equipment Corporation not be used in
+advertising or publicity pertaining to distribution of the software
+without specific, written prior permission.  Adobe Systems and
+Digital Equipment Corporation make no representations about the
+suitability of this software for any purpose.  It is provided "as
+is" without express or implied warranty.
--- debian-edu-artwork-0.0.32.orig/debian/compat
+++ debian-edu-artwork-0.0.32/debian/compat
@@ -0,0 +1 @@
+7
--- debian-edu-artwork-0.0.32.orig/debian/debian-edu-artwork.postrm
+++ debian-edu-artwork-0.0.32/debian/debian-edu-artwork.postrm
@@ -0,0 +1,11 @@
+#!/bin/sh 
+
+set -e
+
+if [ "$1" = remove ]
+then
+	dpkg-divert --package debian-edu-artwork --rename --remove /usr/share/gdm/defaults.conf
+	dpkg-divert --package debian-edu-artwork --rename --remove /usr/share/desktop-base/grub_background.sh
+fi
+
+#DEBHELPER#
--- debian-edu-artwork-0.0.32.orig/debian/README.source
+++ debian-edu-artwork-0.0.32/debian/README.source
@@ -0,0 +1,21 @@
+newer versions are released as a non-native package. if making changes outside
+of the "debian" dir in the source, you need to release a new upstream version.
+to do so, commit your changes to svn and use the new-upstream-version target in
+debian/rules:
+
+  debian/rules new-upstream-version
+
+this will create an upstream source tarball and a .dsc file, which can then be
+built in a clean chroot environment such as pbuilder:
+
+  pbuilder --build debian-edu-artwork_VERSION.dsc
+
+if only making changes to the "debian" dir, download the previous .dsc from a
+debian mirror and copy the debian dir from svn into it:
+
+  dget -x http://ftp.us.debian.org/debian/pool/main/d/debian-edu-artwork/debian-edu-artwork_VERSION.dsc
+  rm -rf debian-edu-artwork-VERSION/debian
+  svn export debian debian-edu-artwork-VERSION/debian
+  cd debian-edu-artwork-VERSION
+  debuild -us -uc -S
+  pbuilder --build ../debian-edu-artwork_VERSION.dsc
--- debian-edu-artwork-0.0.32.orig/debian/debian-edu-artwork.postinst
+++ debian-edu-artwork-0.0.32/debian/debian-edu-artwork.postinst
@@ -0,0 +1,11 @@
+#! /bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+  configure)
+    /usr/share/debian-edu-artwork/update-artwork configure
+    ;;
+esac
--- debian-edu-artwork-0.0.32.orig/debian/debian-edu-artwork.install
+++ debian-edu-artwork-0.0.32/debian/debian-edu-artwork.install
@@ -0,0 +1,3 @@
+debian/tmp/boot/grub
+debian/tmp/etc
+debian/tmp/usr/share
--- debian-edu-artwork-0.0.32.orig/debian/gconf-defaults
+++ debian-edu-artwork-0.0.32/debian/gconf-defaults
@@ -0,0 +1,611 @@
+<gconfentryfile>
+ <!-- Panel -->
+  <entrylist base="/apps/panel/default_setup">
+
+    <!-- List of toplevels -->
+
+    <entry>
+      <key>general/toplevel_id_list</key>
+      <schema_key>/schemas/apps/panel/general/toplevel_id_list</schema_key>
+      <value>
+        <list type="string">
+          <value>
+            <string>bottom_panel</string>
+          </value>
+        </list>
+      </value>
+    </entry>
+
+    <!-- List of objects -->
+
+    <entry>
+      <key>general/object_id_list</key>
+      <schema_key>/schemas/apps/panel/general/object_id_list</schema_key>
+      <value>
+        <list type="string">
+          <value>
+            <string>menu_bar</string>
+          </value>
+          <value>
+            <string>btn_logout</string>
+          </value>
+          <value>
+            <string>btn_exit</string>
+          </value>
+        </list>      
+      </value>
+    </entry>
+
+    <!-- List of applets -->
+
+    <entry>
+      <key>general/applet_id_list</key>
+      <schema_key>/schemas/apps/panel/general/applet_id_list</schema_key>
+      <value>
+        <list type="string">
+          <value>
+            <string>workspace_switcher</string>
+          </value> 
+          <value>
+            <string>window_list</string>
+          </value>
+          <value>
+            <string>notification_area</string>
+          </value>
+          <value>
+            <string>mixer</string>
+          </value>
+          <value>
+            <string>clock</string>
+          </value>
+        </list>
+      </value>
+    </entry>
+
+  <!-- Bottom Panel -->
+
+    <entry>
+      <key>toplevels/bottom_panel/expand</key>
+      <schema_key>/schemas/apps/panel/toplevels/expand</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>toplevels/bottom_panel/orientation</key>
+      <schema_key>/schemas/apps/panel/toplevels/orientation</schema_key>
+      <value>
+        <string>bottom</string>
+      </value>
+    </entry>
+    <entry>
+      <key>toplevels/bottom_panel/size</key>
+      <schema_key>/schemas/apps/panel/toplevels/size</schema_key>
+      <value>
+        <int>24</int>
+      </value>
+    </entry>
+    <entry>
+      <key>toplevels/top_panel/y_bottom</key>
+      <schema_key>/schemas/apps/panel/toplevels/y_bottom</schema_key>
+      <value>
+        <int>0</int>
+      </value>
+    </entry>
+    <entry>
+        <key>toplevels/bottom_panel/background/type</key>
+        <schema_key>/schemas/apps/panel/toplevels/background/type</schema_key>
+    	<value>
+          <string>color</string>
+      </value>
+   </entry>
+
+    <entry>
+    	<key>toplevels/bottom_panel/background/opacity</key>
+    	<schema_key>/schemas/apps/panel/toplevels/background/opacity</schema_key>
+    	<value>
+          <int>37430</int>
+      </value>
+    </entry>
+
+    <entry><key>toplevels/bottom_panel/name</key><schema_key>/schemas/apps/panel/toplevels/name</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/screen</key><schema_key>/schemas/apps/panel/toplevels/screen</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/monitor</key><schema_key>/schemas/apps/panel/toplevels/monitor</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/x</key><schema_key>/schemas/apps/panel/toplevels/x</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/y</key><schema_key>/schemas/apps/panel/toplevels/y</schema_key></entry>
+    <entry><key>toplevels/top_panel/x_right</key><schema_key>/schemas/apps/panel/toplevels/x_right</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/x_centered</key><schema_key>/schemas/apps/panel/toplevels/x_centered</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/y_centered</key><schema_key>/schemas/apps/panel/toplevels/y_centered</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/auto_hide</key><schema_key>/schemas/apps/panel/toplevels/auto_hide</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/enable_animations</key><schema_key>/schemas/apps/panel/toplevels/enable_animations</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/enable_buttons</key><schema_key>/schemas/apps/panel/toplevels/enable_buttons</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/enable_arrows</key><schema_key>/schemas/apps/panel/toplevels/enable_arrows</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/hide_delay</key><schema_key>/schemas/apps/panel/toplevels/hide_delay</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/unhide_delay</key><schema_key>/schemas/apps/panel/toplevels/unhide_delay</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/auto_hide_size</key><schema_key>/schemas/apps/panel/toplevels/auto_hide_size</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/background/color</key><schema_key>/schemas/apps/panel/toplevels/background/color</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/background/image</key><schema_key>/schemas/apps/panel/toplevels/background/image</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/background/fit</key><schema_key>/schemas/apps/panel/toplevels/background/fit</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/background/stretch</key><schema_key>/schemas/apps/panel/toplevels/background/stretch</schema_key></entry>
+    <entry><key>toplevels/bottom_panel/background/rotate</key><schema_key>/schemas/apps/panel/toplevels/background/rotate</schema_key></entry>
+
+  <!-- Menu Bar -->
+
+    <entry>
+      <key>objects/menu_bar/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>menu-object</string>
+      </value>
+    </entry>
+    <entry>
+      <key>objects/menu_bar/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+    <entry>
+      <key>objects/menu_bar/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>0</int>
+      </value>
+    </entry>
+    <entry>
+      <key>objects/menu_bar/panel_right_stick</key>
+      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
+      <value>
+        <bool>false</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>objects/menu_bar/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+
+    <entry><key>objects/menu_bar/bonobo_iid</key><schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key></entry>
+    <entry><key>objects/menu_bar/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>objects/menu_bar/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>objects/menu_bar/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>objects/menu_bar/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>objects/menu_bar/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>objects/menu_bar/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>objects/menu_bar/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>objects/menu_bar/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+
+  <!-- Exit button -->
+
+    <entry>
+      <key>objects/btn_exit/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>action-applet</string>
+      </value>
+    </entry>
+     <entry>
+      <key>objects/btn_exit/action_type</key>
+      <schema_key>/schemas/apps/panel/objects/action_type</schema_key>
+      <value>
+        <string>shutdown</string>
+      </value>
+    </entry>    
+    <entry>
+      <key>objects/btn_exit/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+        <entry>
+      <key>objects/btn_exit/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>1</int>
+      </value>
+    </entry>
+     <entry>
+      <key>objects/btn_exit/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry><key>objects/btn_exit/bonobo_iid</key><schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key></entry>
+    <entry><key>objects/btn_exit/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>objects/btn_exit/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>objects/btn_exit/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>objects/btn_exit/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>objects/btn_exit/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>objects/btn_exit/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>objects/btn_exit/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>objects/btn_exit/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+    
+  <!-- Logout button -->
+
+    <entry>
+      <key>objects/btn_logout/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>action-applet</string>
+      </value>
+    </entry>
+     <entry>
+      <key>objects/btn_logout/action_type</key>
+      <schema_key>/schemas/apps/panel/objects/action_type</schema_key>
+      <value>
+        <string>logout</string>
+      </value>
+    </entry>    
+    <entry>
+      <key>objects/btn_logout/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+        <entry>
+      <key>objects/btn_logout/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>2</int>
+      </value>
+    </entry>
+     <entry>
+      <key>objects/btn_logout/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry><key>objects/btn_logout/bonobo_iid</key><schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key></entry>
+    <entry><key>objects/btn_logout/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>objects/btn_logout/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>objects/btn_logout/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>objects/btn_logout/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>objects/btn_logout/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>objects/btn_logout/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>objects/btn_logout/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>objects/btn_logout/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>    
+ 
+
+
+  <!-- Mixer Applet -->
+
+    <entry>
+      <key>applets/mixer/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>bonobo-applet</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/mixer/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/mixer/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>1</int>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/mixer/panel_right_stick</key>
+      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/mixer/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/mixer/bonobo_iid</key>
+      <schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key>
+      <value>
+        <string>OAFIID:GNOME_MixerApplet</string>
+      </value>
+    </entry>
+
+    <entry><key>applets/mixer/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>applets/mixer/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>applets/mixer/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>applets/mixer/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>applets/mixer/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>applets/mixer/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>applets/mixer/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>applets/mixer/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+
+  <!-- Clock Applet -->
+
+    <entry>
+      <key>applets/clock/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>bonobo-applet</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/clock/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/clock/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>0</int>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/clock/panel_right_stick</key>
+      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/clock/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/clock/bonobo_iid</key>
+      <schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key>
+      <value>
+        <string>OAFIID:GNOME_ClockApplet</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/clock/prefs/show_date</key>      
+      <schema_key>/schemas/apps/clock_applet/prefs/show_date</schema_key>
+      <value>
+        <bool>false</bool>
+      </value>
+    </entry>     
+    <entry><key>applets/clock/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>applets/clock/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>applets/clock/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>applets/clock/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>applets/clock/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>applets/clock/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>applets/clock/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>applets/clock/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+
+  <!-- Notification Area Applet -->
+
+    <entry>
+      <key>applets/notification_area/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>bonobo-applet</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/notification_area/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/notification_area/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>2</int>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/notification_area/panel_right_stick</key>
+      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/notification_area/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/notification_area/bonobo_iid</key>
+      <schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key>
+      <value>
+        <string>OAFIID:GNOME_NotificationAreaApplet</string>
+      </value>
+    </entry>
+
+    <entry><key>applets/notification_area/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>applets/notification_area/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>applets/notification_area/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>applets/notification_area/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>applets/notification_area/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>applets/notification_area/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>applets/notification_area/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>applets/notification_area/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+
+
+  <!-- Workspace Switcher Applet -->
+
+    <entry>
+      <key>applets/workspace_switcher/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>bonobo-applet</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/workspace_switcher/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/workspace_switcher/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>4</int>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/workspace_switcher/panel_right_stick</key>
+      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
+      <value>
+        <bool>false</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/workspace_switcher/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/workspace_switcher/bonobo_iid</key>
+      <schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key>
+      <value>
+        <string>OAFIID:GNOME_WorkspaceSwitcherApplet</string>
+      </value>
+    </entry>
+
+    <entry><key>applets/workspace_switcher/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>applets/workspace_switcher/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>applets/workspace_switcher/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>applets/workspace_switcher/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>applets/workspace_switcher/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>applets/workspace_switcher/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>applets/workspace_switcher/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>applets/workspace_switcher/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+
+  <!-- Window List Applet -->
+
+    <entry>
+      <key>applets/window_list/object_type</key>
+      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
+      <value>
+        <string>bonobo-applet</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/window_list/toplevel_id</key>
+      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
+      <value>
+        <string>bottom_panel</string>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/window_list/position</key>
+      <schema_key>/schemas/apps/panel/objects/position</schema_key>
+      <value>
+        <int>5</int>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/window_list/panel_right_stick</key>
+      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
+      <value>
+        <bool>false</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/window_list/locked</key>
+      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>applets/window_list/bonobo_iid</key>
+      <schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key>
+      <value>
+        <string>OAFIID:GNOME_WindowListApplet</string>
+      </value>
+    </entry>
+
+    <entry><key>applets/window_list/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
+    <entry><key>applets/window_list/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
+    <entry><key>applets/window_list/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
+    <entry><key>applets/window_list/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
+    <entry><key>applets/window_list/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
+    <entry><key>applets/window_list/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
+    <entry><key>applets/window_list/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
+    <entry><key>applets/window_list/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
+
+
+
+
+  </entrylist>
+
+
+ <!-- Nautilus  -->
+   <entrylist base="/">
+    <entry>
+      <key>apps/nautilus/preferences/always_use_browser</key>
+      <schema_key>/schemas/apps/nautilus/preferences/always_use_browser</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>
+    <entry>
+      <key>apps/nautilus/preferences/click_policy</key>
+      <schema_key>/schemas/apps/nautilus/preferences/click_policy</schema_key>
+      <value>
+        <string>single</string>
+      </value>
+    </entry>         
+   </entrylist>
+   
+   
+  <!-- Desktop  -->  
+   <entrylist base="/">
+    <entry>
+      <key>desktop/gnome/background/picture_filename</key>
+      <schema_key>/schemas/desktop/gnome/background/picture_filename</schema_key>
+      <value>
+        <string>/usr/share/wallpapers/debian-edu-wallpaper.png</string>
+      </value>
+    </entry>
+    <entry>
+      <key>desktop/gnome/interface/icon_theme</key>
+      <schema_key>/schemas/desktop/gnome/interface/icon_theme</schema_key>
+      <value>
+        <string>Nuvola</string>
+      </value>
+    </entry>    
+    <entry>
+      <key>desktop/gnome/interface/gtk_theme</key>
+      <schema_key>/schemas/desktop/gnome/interface/gtk_theme</schema_key>
+      <value>
+        <string>Clearlooks</string>
+      </value>
+    </entry>   
+    <entry>
+      <key>apps/gnome-session/options/show_splash_screen</key>
+      <schema_key>/schemas/apps/gnome-session/options/show_splash_screen</schema_key>
+      <value>
+        <bool>true</bool>
+      </value>
+    </entry>      
+
+   </entrylist>   
+      
+</gconfentryfile>
--- debian-edu-artwork-0.0.32.orig/debian/changelog
+++ debian-edu-artwork-0.0.32/debian/changelog
@@ -0,0 +1,466 @@
+debian-edu-artwork (0.0.32-2) unstable; urgency=low
+
+  * Divert /usr/share/desktop-base/grub_background.sh to make
+    debian-edu-artwork installable with desktop-base. (Closes: #603785)
+
+ -- Holger Levsen <holger@debian.org>  Sat, 04 Dec 2010 17:48:21 +0100
+
+debian-edu-artwork (0.0.32-1) unstable; urgency=low
+
+  * Drop debian-edu-artwork-usplash. (Closes: #593707) 
+  * Bump standards version to 3.9.1, no changes needed. 
+
+ -- Holger Levsen <holger@debian.org>  Sun, 19 Sep 2010 15:53:29 +0000
+
+debian-edu-artwork (0.0.31-3) unstable; urgency=low
+
+  [ Holger Levsen ]
+  * Provide source/format and set it to 1.0.
+
+  [ Petter Reinholdtsen ]
+  * Use conflict desktop-base (<< 5.0.5), as version 5.0.5 no longer
+    include the /usr/share/desktop-base/grub_background.sh file.
+  * Make sure the artwork package can be removed also when update-grub
+    fail.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Mon, 05 Jul 2010 19:58:49 +0200
+
+debian-edu-artwork (0.0.31-2) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Updated Standards-Version from 3.8.3 to 3.8.4.  No changes needed.
+
+  [ Andreas B. Mundt ]
+  * Fix update-artwork to work during installs when no grub.conf
+    exists.
+  * Add myself to Uploaders.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun, 02 May 2010 19:39:15 +0200
+
+debian-edu-artwork (0.0.31-1) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Try to fix grub 2 theme support (Closes: #570786).  Make sure we
+    conflict with desktop-base as we include
+    /usr/share/desktop-base/grub_background.sh which is also there.
+
+  [ Andreas B. Mundt ]
+  * Update kdm and gdm theme (Closes: #572769).
+  * Regenerate some Makefile.in files using automake (gdm-theme, kdm-theme
+    and splash).
+  * Remove outdated functions in debian/update-artwork.
+  * Remove obsoleted debian/edit-ini.
+  * Add new wallpaper and grub2 background.
+  * Add functions to update grub.cfg in debian/update-artwork.
+  * Add ksplash for seamless login experience.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Wed, 21 Apr 2010 21:25:30 +0200
+
+debian-edu-artwork (0.0.30-4) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Regenerate some Makefile.in files using automake (kdm-theme, ldm) to
+    make sure new files are included in the binary package.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun, 07 Mar 2010 08:30:49 +0100
+
+debian-edu-artwork (0.0.30-3) unstable; urgency=low
+
+  [ Jonas Smedegaard ]
+  * Add myself as uploader.
+  * Add dummy debian/watch documenting Alioth SVN as origin of tarballs.
+
+  [ Vagrant Cascadian ]
+  * debian/watch: Check Skolelinux repositories for newer versions.
+  * Update email address to use vagrant@debian.org.
+
+  [ Holger Levsen ]
+  * debian-edu-artwork.preinst: call dpkg-divert without --quiet.
+    (Closes: #548249)
+  * Update Standards-Version to 3.8.3, no changes needed.
+  * debian/control: Add armel to the list of supported architectures of
+    debian-edu-artwork-usplash.
+  * debian/watch: check both the Debian and the Debian Edu repository for
+    newer versions.
+
+  [ Petter Reinholdtsen ]
+  * Add KdmGreeterTheme.desktop to kdm theme, to make kdm from KDE 4
+    recognize the theme (Closes: #570369).
+  * Indent the KDM and GDM theme XML files using http://xmlindent.com/
+    to make them easier to read.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat, 06 Mar 2010 12:09:00 +0100
+
+debian-edu-artwork (0.0.30-2) unstable; urgency=low
+
+  * use relative path in postinst when calling update-initramfs, to appease
+    lintian.
+  * debian-edu-artwork-usplash.prerm: fix typo so that it removes the
+    appropriate usplash-artwork alternative.
+  * debian-edu-artwork.preinst, debian-edu-artwork.postrm:
+    - use "set -e" in the body of the script, rather than on the "#!" line, to
+      ensure it invoked even if script is run manually.
+  * remove gconf keys referencing iceweasel, as they are not really artwork
+    related, and belong in a different package. (Closes: #510820)
+
+ -- Vagrant Cascadian <vagrant@freegeek.org>  Sun, 31 May 2009 11:30:47 -0700
+
+debian-edu-artwork (0.0.30-1) unstable; urgency=low
+
+  [ Vagrant Cascadian ]
+  * debian-edu-artwork-usplash: fix failure in postinst when update-initramfs
+    is not present by using full if statement rather than a one-liner.
+  * switch to non-native package (Closes: #474463)
+    - add new-upstream-version target to debian/rules to generate upstream
+      tarballs
+    - add README.source explaining how to generate new upstream tarball, or
+      only make changes to the debian revision.
+
+ -- Vagrant Cascadian <vagrant@freegeek.org>  Fri, 29 May 2009 11:27:48 -0700
+
+debian-edu-artwork (0.0.29) unstable; urgency=low
+
+  [ Vagrant Cascadian ]
+  * update debian/compat to version 7, as version 4 is now deprecated. update
+    build-dependency on debhelper to match.
+  * update Standards-Version to 3.8.1, no changes needed.
+  * Updated LDM theme to work with ldm in lenny (Closes: #507997).
+  * Add ${misc:Depends} to debian/control so that debhelper can add
+    appropriate dependencies if needed.
+  * Add myself to Uploaders.
+  * Add flags to allow debian-maintainer uploads.
+
+ -- Vagrant Cascadian <vagrant@freegeek.org>  Wed, 13 May 2009 11:16:40 -0700
+
+debian-edu-artwork (0.0.28) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Add rules to build grub splash image.  Make sure to convert PNG
+    via JPEG to XPM, to avoid incorrect colors.
+  * Add conflicts with grub (<< 0.97-39) to make sure a version
+    where bug #477791 in update-grub is fixed is used.
+  * Add debhelper makers to new postrm and preinst files.
+  * Updated Standards-Version from 3.7.3 to 3.8.0.  No changes needed
+
+  [ José L. Redrejo Rodríguez ]
+  * Added gconf configuration to customize Gnome Desktop with:
+    - Use only lower panel
+    - Don't need double click for the  mouse
+    - Use Debian Edu background
+    - Customize icon and gtk theme
+  * Added gdm customization
+
+ -- Petter Reinholdtsen <pere@debian.org>  Fri, 25 Jul 2008 00:31:33 +0200
+
+debian-edu-artwork (0.0.27) unstable; urgency=low
+
+  [ Holger Levsen ]
+  * Include non corrupted files skoletux-wallpaper3.xcf.gz and
+    skoletux-wallpaper.xcf.gz (Closes: 447255) fetched from the author.
+  * Only build debian-edu-artwork-usplash on i386, amd64, powerpc
+    and sparc, as usplash is only available on these archs.
+
+  [ Petter Reinholdtsen ]
+  * Fix build rules to handle building usplash package
+    only on archs supported by usplash.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Thu,  1 May 2008 17:51:43 +0200
+
+debian-edu-artwork (0.0.26) unstable; urgency=low
+
+  * Rewrite usplash theme build rules based on the usplash-theme-debian
+    package to get it to work with usplash versions > 0.5 (Closes: #457664).
+  * Replace usplash artwork with graphics provided by Trond Hasle Amundsen.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Thu, 03 Apr 2008 19:01:35 +0200
+
+debian-edu-artwork (0.0.25) unstable; urgency=low
+
+  [Petter Reinholdtsen]
+  * Add hostname to kdm theme (Closes: #459367).  Patch from
+    Klaus Ade Johnstad.
+
+  [Holger Levsen]
+  * shorten old changelog entry to get rid of lintian warning
+  * re-run aclocal with automake1.10 as suggested, before building the package
+
+ -- Holger Levsen <holger@debian.org>  Thu, 14 Feb 2008 15:07:51 +0100
+
+debian-edu-artwork (0.0.24) unstable; urgency=low
+
+  [ Morten Werner Forsbring ]
+  * Added functionality to remove the alternative-setting for ldm-theme on
+    removal of the debian-edu-artwork package. (Closes: #455054)
+  * Bumped Standards-Version to 3.7.3 (no changes).
+  * Added myself as Uploader.
+
+  [ Holger Levsen ]
+  * Correct the spelling of Debian Edu in debian/control as per
+    skolelinux bug #1237
+
+  [ Petter Reinholdtsen ]
+  * Let debian-edu-artwork-usplash provide usplash-theme, and change
+    the depend on usplash to recommends, to make sure the
+    usplash-artwork.so alternative is updated before the usplash
+    postinst look for it. (Closes: #456155)
+  * Reduce debian-edu-artwork relation to kdm and debian-edu-artwork-usplash
+    from recommends to suggests, as we do not really want those to be installed
+    by default.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat, 15 Dec 2007 18:40:41 +0100
+
+debian-edu-artwork (0.0.23) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Disable building of .rle and .xpm.gz, as these are not installed.
+    This removes the build depend need for syslinux and
+    netpbm. (Closes: #441909)
+
+ -- Petter Reinholdtsen <pere@debian.org>  Thu, 13 Sep 2007 09:38:41 +0200
+
+debian-edu-artwork (0.0.22) unstable; urgency=low
+
+  [ Luk Claes ]
+  * Remove myself from uploaders.
+
+  [ Petter Reinholdtsen ]
+  * New versions of DVD label and cover from James Herrington, this
+    time with source files included.
+  * Correct KDEDIRS value used in the Xsession.d script
+    art/kde/25debian-edu-artwork, to enable the Debian Edu background
+    by default.
+  * Build-depend on syslinux for ppmtolss16.
+  * Rewrite build rules for art/splash/ to handle more images, and be
+    more dynamic.  Remove code to install grub splash image.  It does
+    not work.  Install the new debian-edu-splash-live.png image.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat,  8 Sep 2007 10:31:30 +0200
+
+debian-edu-artwork (0.0.21) unstable; urgency=low
+
+  * Add GPL licensed DVD label by James Herrington to media-cover.
+  * Remove more generated files in the clean target of
+    art/usplash/.  (Closes: #434114)
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun, 22 Jul 2007 17:30:46 +0200
+
+debian-edu-artwork (0.0.20) unstable; urgency=low
+
+  * Start work on customized g-i logo image.   Image made using Gimp
+    and licenced using GPL by Ralf Gesellensetter.
+  * Include media cover images.  Storing them in /usr/share/pixmaps/
+    for now.  First one is for the DVD made by James Herrington.
+  * Add .info files next to artwork to document who made them and
+    that their license is GPL.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat, 21 Jul 2007 18:14:54 +0200
+
+debian-edu-artwork (0.0.19) unstable; urgency=low
+
+  * Change how kdm is configured to use the new /etc/default/kdm.d/
+    method instead of the policy breaking editing during
+    postinst. (Closes: #431699)
+  * Update default settings used when restoring the old kdm configuration
+    to match the current defaults in kdm from version 3.5.5a.dfsg.1-6.
+  * Use full path when specifying background wallpaper, to avoid
+    strange path rewriting done by init.d/kdm.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat,  7 Jul 2007 12:38:47 +0200
+
+debian-edu-artwork (0.0.18) unstable; urgency=low
+
+  [ Holger Levsen ]
+  * Added myself to uploaders.
+
+ -- Holger Levsen <holger@debian.org>  Fri, 27 Apr 2007 14:32:41 +0200
+
+debian-edu-artwork (0.0.17) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Convert art/usplash/debian-edu-usplash.png from 8bit to 4bit
+    to get a working usplash image.
+
+  [ Steffen Joeris ]
+  * Add myself to uploaders
+
+ -- Luk Claes <luk@debian.org>  Wed, 22 Nov 2006 22:40:08 +0100
+
+debian-edu-artwork (0.0.16) unstable; urgency=low
+
+  [ Lars Risan ]
+  * Replaced art/splash/debian-edu-splash.png with nicer one.
+  * Replaced art/usplash/debian-edu-usplash.png with nicer one.
+
+  [ Petter Reinholdtsen ]
+  * Removed art/usplash/debian-edu-usplash.xcf as it is no longer the
+    original for the usplash image.
+
+  [ Luk Claes ]
+  * Added myself to uploaders.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Mon, 20 Nov 2006 15:18:58 +0100
+
+debian-edu-artwork (0.0.15) unstable; urgency=low
+
+  * Add missing depends for debian-edu-artwork on libconfig-inifiles-perl.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun, 29 Oct 2006 00:24:10 +0200
+
+debian-edu-artwork (0.0.14) unstable; urgency=low
+
+  [ Lars Risan ]
+  * Replace the CD boot image for isolinux (art/splash/) with a nicer
+    one drawn with 16 colors.  Removed the gimp xcf file, as it no longer
+    applies.
+
+  [ Petter Reinholdtsen ]
+  * Add art/g-i/ with notes on how to replace the g-i banner image.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Tue, 24 Oct 2006 12:16:19 +0200
+
+debian-edu-artwork (0.0.13) unstable; urgency=low
+
+  [ Ronny Aasen ]
+  * Added preview image in art/ldm
+
+  [ Knut Yrvin ]
+  * Replace KDE wallpaper with a more discrete one.
+  * Update kdm theme preview image with one using the new wallpaper.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun,  8 Oct 2006 17:14:42 +0200
+
+debian-edu-artwork (0.0.12) unstable; urgency=low
+
+  [ Ronny Aasen ]
+  * Replaced Dialog.png, with a image contributed by Edgar M. Vigdal
+  * Updated kdm-theme/preview.png
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun, 24 Sep 2006 12:13:07 +0200
+
+debian-edu-artwork (0.0.11) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Clean up package removal code.
+  * Update README with into that the images should be GPL-licensed and
+    that "source" files should be included for the images to make them
+    easy to modify.
+  * Rewrite update-artwork to avoid warning message from grep if
+    /etc/kde3/kdm/kdmrc is missing.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Fri, 15 Sep 2006 21:12:15 +0200
+
+debian-edu-artwork (0.0.10) unstable; urgency=low
+
+  * Change usplash text area color to white on black.  Change progress
+    bar color to blue on brighter blue.  Increase the text area.
+  * Move activation and deactivation code from postinst/prerm into
+    /usr/share/debian-edu-artwork/update-artwork, and call this script
+    from the maintainer scripts.  Drop dependency on debian-edu-config
+    as it isn't needed any more.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Thu, 14 Sep 2006 22:38:13 +0200
+
+debian-edu-artwork (0.0.9) unstable; urgency=low
+
+  * Only try to activate KDM theme when KDM is installed.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Mon,  4 Sep 2006 22:29:16 +0200
+
+debian-edu-artwork (0.0.8) unstable; urgency=low
+
+  * Avoid switching background image during login, by setting the KDM
+    background image to the same as the KDM theme and KDE desktop
+    background.
+  * Avoid full path to wallpaper in kdesktoprc, where it isn't needed.
+  * Drop execute bit for /etc/X11/Xsession.d/25debian-edu-artwork, it
+    is not needed.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun,  3 Sep 2006 16:00:49 +0200
+
+debian-edu-artwork (0.0.7) unstable; urgency=low
+
+  * Remember to run autoreconf, to make sure kdesktoprc is installed
+    in the correct location.
+  * Add some notes about the policy related status of the kdm theme
+    enabling code.  See bug #385849 as well.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun,  3 Sep 2006 14:39:43 +0200
+
+debian-edu-artwork (0.0.6) unstable; urgency=low
+
+  * Add kdm theme based on the kubuntu kdm theme by editing
+    /etc/kde3/kdm/kdmrc. Depend on debian-edu-config to have
+    /usr/bin/update-ini-file available for kdmrc editing.  Recommend kdm.
+  * Enable our KDE wallpaper by default, by setting KDEDIRS in
+    Xsession.d/.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sun,  3 Sep 2006 13:52:18 +0200
+
+debian-edu-artwork (0.0.5) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Copy debian-edu theme for ldm from the ltsp package to try to collect
+    all artwork for Debian Edu in one location.
+  * Add postinst code for debian-edu-artwork to select the debian-edu
+    ldm theme at install time.
+  * Start on kde and kdm background image installation.  Not working
+    yet, so the enabling code is commented out.
+  * Copy
+    <URL:http://www.skolelinux.de/~ralf/artwork/wallpapers/skoletux-wallpaper.png>
+    and use it as the KDE background image.  Thanks, Ralf.  Found via
+    skolelinux bug #397.
+  * Add instructions for the CD splash image.
+  * Replace CD splash image with one with black background and both
+    the mascot, the logo and 'Debian Edu'.  Tried to include gimp "source"
+    file too.
+  * Replace usplash image based on the CD splash image.
+  * Reduce debhelper compat level from 5 to 4, to make the package buildable
+    in sarge.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat,  2 Sep 2006 17:48:06 +0200
+
+debian-edu-artwork (0.0.4) unstable; urgency=low
+
+  [ Morten Werner Olsen ]
+  * Polishing the descriptions in debian/control a bit.
+
+  [ Petter Reinholdtsen ]
+  * Explain in the readme why the debian-edu-artwork-usplash package exist.
+  * Add build-depend on imagemagick, as the convert program is needed.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Wed,  9 Aug 2006 22:10:25 +0200
+
+debian-edu-artwork (0.0.3) unstable; urgency=low
+
+  [ Petter Reinholdtsen ]
+  * Install grub splash image into the location used by package
+    grub-splashimages (/boot/grub/splashimages/), and symlink from the
+    location detected by update-grub.  Add suggest on
+    grub (>= 0.95+cvs20040624-10) to indicate which grub version include
+    the required support.
+  * Make debian-edu-artwork recommend debian-edu-artwork-usplash, to make it
+    possible to use one without the other.  Let debian-edu-artwork-usplash
+    depend and not recommend usplash, to make sure it is enough to install it
+    to enable it.
+  * Change section to graphics, as it seem a better choice than gnome.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Mon,  7 Aug 2006 21:29:21 +0200
+
+debian-edu-artwork (0.0.2) unstable; urgency=low
+
+  [ Steffen Joeris ]
+  * Add option to dh_makeshlibs call to avoid useless
+    code for ldconfig call in maintainer scripts
+
+  [ Petter Reinholdtsen ]
+  * Install splash image as /boot/grub/splash.xpm.gz,
+    to make it available for grub.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Mon,  7 Aug 2006 08:48:25 +0200
+
+debian-edu-artwork (0.0.1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Petter Reinholdtsen <pere@debian.org>  Fri,  4 Aug 2006 16:15:20 +0200
+
--- debian-edu-artwork-0.0.32.orig/debian/source/format
+++ debian-edu-artwork-0.0.32/debian/source/format
@@ -0,0 +1 @@
+1.0
