~ubuntu-branches/ubuntu/maverick/backintime/maverick

« back to all changes in this revision

Viewing changes to kde4/configure

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Wiltshire
  • Date: 2009-05-16 23:04:32 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090516230432-orrutvtufbtuxsc6
Tags: 0.9.24-1
* New upstream version (closes: #527447):
  - backintime is no longer aware of 'backintime-gnome' and 'backintime-kde4'
    (you need run 'backintime-gnome' for GNOME version and 'backintime-kde4'
    for KDE4 version)
  - fix a bug that crashes the program after taking a snapshot
* Update homepage field in debian/control (closes: #527595)
* Refactor packaging to fit new upstream build system (an almost entire 
  re-write of debian/rules)
* Make configure scripts use /bin/sh instead of /bin/bash (they don't use
  bash features)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
#check KDE4
 
4
#DISABLED for Debian (fails on autobuilders
 
5
#if [ $kde4 = "--kde4" ]; then
 
6
#       if [ -z `which kdeinit4` ]; then
 
7
#               echo "ERROR: Can't find KDE4 !"
 
8
#               exit 1
 
9
#       fi
 
10
#fi
 
11
 
 
12
cp Makefile.template Makefile
 
13
 
 
14
echo "All OK. Now run:"
 
15
echo "    make"
 
16
echo "    sudo make install"
 
17