~ubuntu-branches/debian/sid/guake/sid

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Package Import Robot
  • Author(s): Daniel Echeverry
  • Date: 2014-09-05 21:47:17 UTC
  • mfrom: (1.2.1) (22.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20140905214717-s239dpeg4o9cn0u6
Tags: 0.5.0-1
* New upstream release.
* debian/control
  + Update Vcs-* fields.
* guake.postinst/guake.prerm
  + Register guake as x-terminal-emulator. Closes: #736184
* remove postint and prerm file because are duplicates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Run this to generate all the initial makefiles, etc.
 
3
 
 
4
srcdir=`dirname $0`
 
5
test -z "$srcdir" && srcdir=.
 
6
 
 
7
PKG_NAME="guake"
 
8
 
 
9
(test -f $srcdir/src/guake) || {
 
10
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
 
11
    echo " top-level $PKG_NAME directory"
 
12
    exit 1
 
13
}
 
14
 
 
15
which gnome-autogen.sh || {
 
16
    echo "You need to install gnome-common from GNOME SVN and make"
 
17
    echo "sure the gnome-autogen.sh script is in your \$PATH."
 
18
    exit 1
 
19
}
 
20
 
 
21
REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh $@