~noskcaj/ubuntu/vivid/xfce4-netload-plugin/1.2.4

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Simon Huggins, Yves-Alexis Perez
  • Date: 2009-03-01 11:39:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090301113932-avvah7fe1iuzzo1h
Tags: 0.4.0-1
[ Simon Huggins ]
* debian/control: Move fake Homepage field to a real one now dpkg
  supports it.
* Add Vcs-* headers to debian/control

[ Yves-Alexis Perez ]
* Fake new upstream release to follow package renaming.
* debian/control:
  - update my email address.
  - remove Rudy and Martin from Uploaders. Thanks to them!
  - update standards version to 3.8.0.
  - add dep on ${misc:Depends}. 
* debian/copyright: update dates, and license information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# $Id: autogen.sh 850 2005-10-18 18:45:11Z bwalle $
4
 
#
5
 
# Copyright (c) 2002-2005
6
 
#         The Thunar development team. All rights reserved.
7
 
#
8
 
# Written for Thunar by Benedikt Meurer <benny@xfce.org>.
9
 
#
10
 
 
11
 
(type xdt-autogen) >/dev/null 2>&1 || {
12
 
  cat >&2 <<EOF
13
 
autogen.sh: You don't seem to have the Xfce development tools installed on
14
 
            your system, which are required to build this software.
15
 
            Please install the xfce4-dev-tools package first, it is available
16
 
            from http://www.xfce.org/.
17
 
EOF
18
 
  exit 1
19
 
}
20
 
 
21
 
 
22
 
exec xdt-autogen $@
23
 
 
24
 
# vi:set ts=2 sw=2 et ai: