summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 5511eed6fa4b96fa183c5becdc8e9560426bef94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PKG_NAME="GNOME Core Desktop"

(test -f $srcdir/configure.in \
  && test -f $srcdir/HACKING \
  && test -d $srcdir/libgnome-desktop) || {
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
    echo " top-level gnome directory"
    exit 1
}


which gnome-autogen.sh || {
    echo "You need to install gnome-common from the GNOME SVN"
    exit 1
}

if test "`which gnomevfs-copy`" = ""; then
	touch gnome-about/foundation-members.list
else
	gnomevfs-copy http://api.gnome.org/gnome-about/foundation-members gnome-about/foundation-members.list
fi

REQUIRED_AUTOMAKE_VERSION=1.9 . gnome-autogen.sh