renatofilho@487: #!/bin/sh renatofilho@487: # Run this to generate all the initial makefiles, etc. renatofilho@487: renatofilho@487: srcdir=`dirname $0` renatofilho@487: test -z "$srcdir" && srcdir=. renatofilho@487: renatofilho@487: PKG_NAME="myth-stream" renatofilho@487: renatofilho@487: (test -f $srcdir/configure.ac) || { renatofilho@487: echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" renatofilho@487: echo " top-level $PKG_NAME directory" renatofilho@487: exit 1 renatofilho@487: } renatofilho@487: renatofilho@487: which gnome-autogen.sh || { renatofilho@487: echo "You need to install gnome-common from the GNOME CVS" renatofilho@487: exit 1 renatofilho@487: } renatofilho@555: ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4" renatofilho@487: REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh