diff --git a/Makefile b/Makefile index b5b6388..4fdccd2 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ DEFAULT_BACKGROUND=desktop-background INSTALL=install -m 0644 -BACKGROUNDS=$(wildcard backgrounds/*.png backgrounds/*.jpg backgrounds/*.svg) +BACKGROUNDS=$(wildcard backgrounds/*.png backgrounds/*.jpg backgrounds/*.svg backgrounds/*.tga) EMBLEMS=$(wildcard emblems/*png emblems/*icon) SPLASH=$(wildcard splash/*.png) PIXMAPS=$(wildcard pixmaps/*.png) diff --git a/backgrounds/debian-blueish-wallpaper-640x480.tga b/backgrounds/debian-blueish-wallpaper-640x480.tga new file mode 100644 index 0000000..2e20662 Binary files /dev/null and b/backgrounds/debian-blueish-wallpaper-640x480.tga differ diff --git a/debian/changelog b/debian/changelog index 3d9caa5..b40eea8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +desktop-base (4.0.5) UNRELEASED; urgency=low + + * Bump Standards-Version to 3.7.3. + * Add Homepage field. + * Remove DM-Upload-Allowed: yes; All Uploaders are DD. + * Provide 640x480 TGA version of debian-blueish-wallpaper.svg for GRUB 2. + Thanks to Robert Millan (Closes: #459352) + + -- Fathi Boudra Wed, 09 Jan 2008 11:08:23 +0100 + desktop-base (4.0.4) unstable; urgency=low [ Fathi Boudra ] diff --git a/debian/control b/debian/control index ed606e1..ba9f547 100644 --- a/debian/control +++ b/debian/control @@ -3,12 +3,11 @@ Section: x11 Priority: optional Maintainer: Gustavo Franco Uploaders: Loïc Minier , - Fathi Boudra , + Fathi Boudra , Yves-Alexis Perez -Build-Depends: cdbs, - debhelper (>= 5.0.13) -Standards-Version: 3.7.2 -DM-Upload-Allowed: yes +Build-Depends: cdbs, debhelper (>= 5.0.13) +Standards-Version: 3.7.3 +Homepage: http://www.debian.org/devel/debian-desktop Package: desktop-base Architecture: all diff --git a/debian/postinst b/debian/postinst index cc11377..475336e 100644 --- a/debian/postinst +++ b/debian/postinst @@ -57,5 +57,9 @@ if [ "$1" = "configure" -o "$1" = "abort-upgrade" ]; then /usr/share/images/desktop-base/desktop-splash \ desktop-splash \ /usr/share/images/desktop-base/Splash-Debian_red.png 10 -fi + # GRUB background + if which update-grub2 2> /dev/null ; then + update-grub2 + fi +fi diff --git a/debian/prerm b/debian/prerm index 2c9fe75..625887f 100644 --- a/debian/prerm +++ b/debian/prerm @@ -31,5 +31,10 @@ if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then update-alternatives --remove desktop-splash \ /usr/share/images/desktop-base/Splash-Debian_red.png + + rm -f /usr/share/images/desktop-base/debian-blueish-wallpaper-640x480.tga + if which update-grub2 2> /dev/null ; then + update-grub2 + fi fi