~ps-jenkins/unity-settings-daemon/ubuntu-vivid-proposed

1 by William Jon McCann
Initial checkin. Previously lived in gdm module.
1
#!/bin/sh
2
# Run this to generate all the initial makefiles, etc.
3
4
REQUIRED_AUTOMAKE_VERSION=1.5
5
USE_GNOME2_MACROS=1
6
7
srcdir=`dirname $0`
8
test -z "$srcdir" && srcdir=.
9
4002 by Robert Ancell
Rename most of the components to unity so can be co-installed.
10
PKG_NAME="unity-settings-daemon"
1 by William Jon McCann
Initial checkin. Previously lived in gdm module.
11
12
(test -f $srcdir/configure.ac \
96 by Jens Granseuer
Based on a patch by: Damien Carberry <damien carberry@sun.com>
13
  && test -d $srcdir/gnome-settings-daemon \
14
  && test -f $srcdir/gnome-settings-daemon/gnome-settings-manager.h) || {
1 by William Jon McCann
Initial checkin. Previously lived in gdm module.
15
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
4002 by Robert Ancell
Rename most of the components to unity so can be co-installed.
16
    echo " top-level unity-settings-daemon directory"
1 by William Jon McCann
Initial checkin. Previously lived in gdm module.
17
    exit 1
18
}
19
20
which gnome-autogen.sh || {
21
    echo "You need to install gnome-common from the GNOME SVN"
22
    exit 1
23
}
1243 by Bastien Nocera
build: Remove unused line in autogen.sh
24
1 by William Jon McCann
Initial checkin. Previously lived in gdm module.
25
. gnome-autogen.sh