* Restore original virtual terminal color palette (from xubuntu-artwork)
- debian/lubuntu-artwork.postint & debian/lubuntu-artwork.postrm: Use the new default virtual terminal color palette instead of forcing the original one. - debian/control: Depend on libnewt0.52 to make sure that the newt-palette alternatives are registered.
This commit is contained in:
parent
8aaa68c28f
commit
a4fe10cf29
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,3 +1,14 @@
|
|||||||
|
lubuntu-artwork (0.14) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Restore original virtual terminal color palette (from xubuntu-artwork)
|
||||||
|
- debian/lubuntu-artwork.postint & debian/lubuntu-artwork.postrm: Use the
|
||||||
|
new default virtual terminal color palette instead of forcing the original
|
||||||
|
one.
|
||||||
|
- debian/control: Depend on libnewt0.52 to make sure that the newt-palette
|
||||||
|
alternatives are registered.
|
||||||
|
|
||||||
|
-- Julien Lavergne <gilir@ubuntu.com> Mon, 04 Apr 2011 23:19:20 +0200
|
||||||
|
|
||||||
lubuntu-artwork (0.13) natty; urgency=low
|
lubuntu-artwork (0.13) natty; urgency=low
|
||||||
|
|
||||||
* usr/share/lxdm/themes/Lubuntu/greeter.ui:
|
* usr/share/lxdm/themes/Lubuntu/greeter.ui:
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -10,7 +10,7 @@ Vcs-Browser: http://bazaar.launchpad.net/~lubuntu-desktop/+junk/artwork/files
|
|||||||
|
|
||||||
Package: lubuntu-artwork
|
Package: lubuntu-artwork
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}, gtk2-engines-murrine
|
Depends: ${misc:Depends}, gtk2-engines-murrine, libnewt0.52 (>= 0.52.11-2ubuntu7)
|
||||||
Description: artwork for Lubuntu
|
Description: artwork for Lubuntu
|
||||||
Artwork for Lubuntu, contained the wallpaper and others specific images and
|
Artwork for Lubuntu, contained the wallpaper and others specific images and
|
||||||
logos.
|
logos.
|
||||||
|
38
debian/lubuntu-artwork.postinst
vendored
Executable file
38
debian/lubuntu-artwork.postinst
vendored
Executable file
@ -0,0 +1,38 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# This script can be called in the following ways:
|
||||||
|
#
|
||||||
|
# After the package was installed:
|
||||||
|
# <postinst> configure <old-version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# If prerm fails during upgrade or fails on failed upgrade:
|
||||||
|
# <old-postinst> abort-upgrade <new-version>
|
||||||
|
#
|
||||||
|
# If prerm fails during deconfiguration of a package:
|
||||||
|
# <postinst> abort-deconfigure in-favour <new-package> <version>
|
||||||
|
# removing <old-package> <version>
|
||||||
|
#
|
||||||
|
# If prerm fails during replacement due to conflict:
|
||||||
|
# <postinst> abort-remove in-favour <new-package> <version>
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
configure)
|
||||||
|
# Lubuntu prefers legacy newt colors over Aubergine by default
|
||||||
|
if update-alternatives --query newt-palette | grep -qs "Status: auto"; then
|
||||||
|
update-alternatives --set newt-palette /etc/newt/palette.original
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade|abort-deconfigure|abort-remove)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "$0 called with unknown argument \`$1'" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
54
debian/lubuntu-artwork.postrm
vendored
Executable file
54
debian/lubuntu-artwork.postrm
vendored
Executable file
@ -0,0 +1,54 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# This script can be called in the following ways:
|
||||||
|
#
|
||||||
|
# After the package was removed:
|
||||||
|
# <postrm> remove
|
||||||
|
#
|
||||||
|
# After the package was purged:
|
||||||
|
# <postrm> purge
|
||||||
|
#
|
||||||
|
# After the package was upgraded:
|
||||||
|
# <old-postrm> upgrade <new-version>
|
||||||
|
# if that fails:
|
||||||
|
# <new-postrm> failed-upgrade <old-version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# After all of the packages files have been replaced:
|
||||||
|
# <postrm> disappear <overwriting-package> <version>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# If preinst fails during install:
|
||||||
|
# <new-postrm> abort-install
|
||||||
|
#
|
||||||
|
# If preinst fails during upgrade of removed package:
|
||||||
|
# <new-postrm> abort-install <old-version>
|
||||||
|
#
|
||||||
|
# If preinst fails during upgrade:
|
||||||
|
# <new-postrm> abort-upgrade <old-version>
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove)
|
||||||
|
if update-alternatives --query newt-palette | grep -qs "Value: /etc/newt/palette.original"; then
|
||||||
|
update-alternatives --auto newt-palette
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
purge)
|
||||||
|
;;
|
||||||
|
|
||||||
|
upgrade|failed-upgrade|disappear)
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-install|abort-upgrade)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "$0 called with unknown argument \`$1'" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
Loading…
x
Reference in New Issue
Block a user