source: trunk/third/gcalctool/autogen.sh @ 21030

Revision 21030, 534 bytes checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21029, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4srcdir=`dirname $0`
5test -z "$srcdir" && srcdir=.
6
7PKG_NAME="gcalctool"
8REQUIRED_AUTOMAKE_VERSION=1.7
9
10(test -f $srcdir/configure.in \
11  && test -d $srcdir/gcalctool) || {
12    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
13    echo " top-level gcalctool directory"
14    exit 1
15}
16
17which gnome-autogen.sh || {
18    echo "You need to install gnome-common from the GNOME CVS"
19    exit 1
20}
21USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh
Note: See TracBrowser for help on using the repository browser.