You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
2e59866167
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@134302 d073be05-634f-4543-b044-5fe20cf6d1d6
25 lines
608 B
Bash
25 lines
608 B
Bash
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
REQUIRED_AUTOMAKE_VERSION=1.9
|
|
REQUIRED_M4MACROS=introspection.m4
|
|
|
|
PKG_NAME="GConf"
|
|
|
|
(test -f $srcdir/gconf/gconf.h) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level $PKG_NAME directory"
|
|
exit 1
|
|
}
|
|
|
|
which gnome-autogen.sh || {
|
|
echo "You need to install gnome-common from GNOME SVN and make"
|
|
echo "sure the gnome-autogen.sh script is in your \$PATH."
|
|
exit 1
|
|
}
|
|
|
|
REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh
|