~ubuntu-branches/debian/sid/cheese/sid

« back to all changes in this revision

Viewing changes to debian/cheese.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2011-07-17 21:04:16 UTC
  • mfrom: (15.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20110717210416-nt5qi659qei7a2yy
Tags: 3.0.1-2
* debian/control.in:
  - Change gir1.2-cheese-3.0 Section to libs
  - Make library packages depend against cheese-common package
  - Make cheese package recommends against hicolor-icon-theme
  - Move gst Dependency to libcheese package
* debian/patches/0002-fix-linking.patch: Add missing library to fix linking
* debian/watch:
  - Switch to .bz2 tarballs.
  - Bump version to 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
# some version prior to 2.22.2-3 started shipping /var/lib/scrollkeeper
6
 
# erroneously, hence the database was overwritten and needs a full rebuild
7
 
if [ "$1" = "configure" ] && dpkg --compare-versions "$2" lt-nl "2.22.2-3" && which scrollkeeper-rebuilddb >/dev/null 2>&1; then
8
 
    echo "Upgrade from broken Cheese version detected, running scrollkeeper-rebuilddb..."
9
 
    scrollkeeper-rebuilddb -q
10
 
fi
11
 
 
12
 
#DEBHELPER#
13