debian/{postinst,prerm}:
- added background provided by Josselin Mouette <joss@debian.org>
to fit good with GNOME2.12's splash and theme look
(Closes: #332873)
51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
#!/bin/bash -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "${1}" = "configure" ] && [ "$2" != "" ] ; then
|
|
if dpkg --compare-versions ${2} lt 0.3.11 && dpkg --compare-versions ${2} gt 0.3.5; then
|
|
if test -x /var/lib/dpkg/info/libgnome2-common.postinst; then
|
|
/var/lib/dpkg/info/libgnome2-common.postinst configure
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ "$1" = "configure" -o "$1" = "abort-upgrade" ]; then
|
|
# Alternatives for the background
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-background \
|
|
desktop-background \
|
|
/usr/share/images/desktop-base/debblue-1600x1200.png 40
|
|
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-background \
|
|
desktop-background \
|
|
/usr/share/images/desktop-base/debian-background.svg 30
|
|
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-background \
|
|
desktop-background \
|
|
/usr/share/images/desktop-base/bluedeb-1024x768.jpg 20
|
|
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-background \
|
|
desktop-background \
|
|
/usr/share/images/desktop-base/Debian.jpg 20
|
|
|
|
# Alternatives for the splash
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-splash \
|
|
desktop-splash \
|
|
/usr/share/images/desktop-base/Splash-debblue.png 40
|
|
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-splash \
|
|
desktop-splash \
|
|
/usr/share/images/desktop-base/Splash-Debian.png 20
|
|
|
|
update-alternatives --install \
|
|
/usr/share/images/desktop-base/desktop-splash \
|
|
desktop-splash \
|
|
/usr/share/images/desktop-base/Splash-Debian_red.png 20
|
|
|
|
fi |