* 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.
This commit is contained in:
Fathi Boudra
2008-01-09 11:15:13 +00:00
parent 881a9638aa
commit 6770fd5111
6 changed files with 25 additions and 7 deletions

View File

@@ -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)

Binary file not shown.

10
debian/changelog vendored
View File

@@ -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 <fabo@debian.org> Wed, 09 Jan 2008 11:08:23 +0100
desktop-base (4.0.4) unstable; urgency=low
[ Fathi Boudra ]

9
debian/control vendored
View File

@@ -3,12 +3,11 @@ Section: x11
Priority: optional
Maintainer: Gustavo Franco <stratus@debian.org>
Uploaders: Loïc Minier <lool@dooz.org>,
Fathi Boudra <fboudra@free.fr>,
Fathi Boudra <fabo@debian.org>,
Yves-Alexis Perez <corsac@corsac.net>
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

6
debian/postinst vendored
View File

@@ -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

5
debian/prerm vendored
View File

@@ -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