~ubuntu-branches/ubuntu/precise/partitionmanager/precise

« back to all changes in this revision

Viewing changes to src/partitionmanager.in

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2009-05-02 14:50:18 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090502145018-ktgdpdforvzltn86
Tags: 1.0.0~beta2-0ubuntu1
* New upstream release
* Remove debian/patches (icon is now included)
  + drop quilt build-dep
* Bump standards-version to 3.8.1
* Update lintian override with manpage for partitionmanager-bin, the 
  actually binary is now a wrapper around -bin, so we don't need an
  additional manpage
* Use pkg-kde-tools for building instead of CDBS' kde4.mk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Copyright (C) 2009 by Volker Lanz <vl@fidra.de>
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the
 
17
# Free Software Foundation, Inc.,
 
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
19
 
 
20
HAL_LOCK=`which hal-lock`
 
21
PARTITIONMANAGER_BIN=@INSTALL_PATH@/partitionmanager-bin
 
22
RUN_WITHOUT_LOCK=1
 
23
 
 
24
if [ "x$HAL_LOCK" != "x" ]; then
 
25
        $HAL_LOCK --interface org.freedesktop.Hal.Device.Storage --exclusive --run "$PARTITIONMANAGER_BIN $*" && RUN_WITHOUT_LOCK=0
 
26
fi
 
27
 
 
28
if [ $RUN_WITHOUT_LOCK -eq 1 ]; then
 
29
        $PARTITIONMANAGER_BIN $*
 
30
fi
 
31