~ubuntu-branches/ubuntu/jaunty/ubuntu-docs/jaunty-updates

« back to all changes in this revision

Viewing changes to kubuntu/debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Matthew East
  • Date: 2007-10-04 08:17:06 UTC
  • Revision ID: james.westby@ubuntu.com-20071004081706-cfypxumc06nmu6ab
Tags: 7.10.1
* Adding translations to source package
* Don't install libs/pdf directory 
* Restore symlink-dupes script to eliminate duplicate files (LP: 149040)
* Fix debian/rules to take account of new location for pot files (thanks to Martin Pitt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
set -e
3
 
 
4
 
#DEBHELPER#
5
 
 
6
 
case "$1" in
7
 
  configure)
8
 
    update-alternatives \
9
 
    --install /usr/share/ubuntu-artwork/home/index.html \
10
 
        firefox-homepage /usr/share/ubuntu-artwork/home/kfirefox-index.html 42 \
11
 
    --slave /usr/share/ubuntu-artwork/home/locales \
12
 
        firefox-homepage-locales /usr/share/ubuntu-artwork/home/locales-kubuntu
13
 
 
14
 
    update-alternatives \
15
 
    --set firefox-homepage /usr/share/ubuntu-artwork/home/kfirefox-index.html
16
 
 
17
 
  if which install-docs >/dev/null 2>&1; then
18
 
          install-docs -i /usr/share/doc-base/kubuntu-systemdocs
19
 
          ln -sf /usr/share/doc/kde/HTML/en/common /usr/share/doc/kde/HTML/en/kubuntu/
20
 
          ln -sf /usr/share/ubuntu-artwork/images /usr/share/ubuntu-artwork/home/images
21
 
          ln -sf /usr/share/ubuntu-artwork/kubuntu.css /usr/share/ubuntu-artwork/home/kubuntu.css
22
 
          ln -sf /usr/share/doc/kde/HTML/en/kubuntu/sysdocs-index/index.html /usr/share/doc/kde/HTML/en/kubuntu/index.html
23
 
  fi
24
 
 
25
 
  ;;
26
 
esac
27
 
 
28
 
exit 0