2004-09-19 14:24:53 -06:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
|
|
|
srcdir=`dirname $0`
|
2004-09-19 16:32:22 -06:00
|
|
|
test -z "$srcdir" && srcdir=.
|
2004-09-19 14:24:53 -06:00
|
|
|
|
2004-09-19 16:32:22 -06:00
|
|
|
PKG_NAME="gparted"
|
|
|
|
REQUIRED_AUTOMAKE_VERSION=1.7
|
2004-09-19 14:24:53 -06:00
|
|
|
|
2004-09-19 16:32:22 -06:00
|
|
|
which gnome-autogen.sh || {
|
|
|
|
echo "You need to install gnome-common from the GNOME CVS"
|
|
|
|
exit 1
|
2004-09-19 14:24:53 -06:00
|
|
|
}
|
2004-09-19 17:16:54 -06:00
|
|
|
|
|
|
|
#i needed to put this one here on order to fix an weird depcomp error
|
|
|
|
aclocal
|
|
|
|
|
|
|
|
|
2004-09-19 16:32:22 -06:00
|
|
|
USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh
|