1999-09-03 10:27:29 -04:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
2002-03-10 23:54:57 -05:00
|
|
|
PKG_NAME="Irssi"
|
|
|
|
|
2017-10-25 10:22:57 -04:00
|
|
|
srcdir=`dirname "$0"`
|
1999-09-03 10:27:29 -04:00
|
|
|
test -z "$srcdir" && srcdir=.
|
2017-10-25 10:22:57 -04:00
|
|
|
mydir=`pwd`
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2017-10-25 10:22:57 -04:00
|
|
|
if test ! -f "$srcdir"/configure.ac; then
|
|
|
|
echo -n "**Error**: Directory \`$srcdir' does not look like the"
|
1999-09-03 10:27:29 -04:00
|
|
|
echo " top-level $PKG_NAME directory"
|
|
|
|
exit 1
|
2000-07-26 13:52:19 -04:00
|
|
|
fi
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2017-10-25 10:22:57 -04:00
|
|
|
cd "$srcdir"
|
|
|
|
|
2000-07-26 13:52:19 -04:00
|
|
|
# create help files
|
2001-03-04 05:38:06 -05:00
|
|
|
echo "Creating help files..."
|
2017-10-25 10:22:57 -04:00
|
|
|
perl utils/syntax.pl
|
2001-03-04 05:38:06 -05:00
|
|
|
|
2014-05-30 19:01:39 -04:00
|
|
|
echo "Creating ChangeLog..."
|
2017-10-25 10:22:57 -04:00
|
|
|
git log > ChangeLog
|
2015-07-09 08:20:30 -04:00
|
|
|
if test "$?" -ne 0; then
|
|
|
|
echo "**Error**: ${PKG_NAME} Autogen must be run in a git clone, cannot proceed."
|
|
|
|
exit 1
|
|
|
|
fi
|
2004-11-04 10:53:22 -05:00
|
|
|
|
2001-01-05 04:38:08 -05:00
|
|
|
files=`echo docs/help/in/*.in|sed -e 's,docs/help/in/Makefile.in ,,' -e 's,docs/help/in/,!,g' -e 's/\.in /.in ?/g'`
|
2001-05-05 14:45:01 -04:00
|
|
|
cat docs/help/in/Makefile.am.gen|sed "s/@HELPFILES@/$files/g"|sed 's/?/\\?/g'|tr '!?' '\t\n' > docs/help/in/Makefile.am
|
2000-07-26 13:52:19 -04:00
|
|
|
|
|
|
|
files=`echo $files|sed 's/\.in//g'`
|
2001-05-05 14:45:01 -04:00
|
|
|
cat docs/help/Makefile.am.gen|sed "s/@HELPFILES@/$files/g"|sed 's/?/\\?/g'|tr '!?' '\t\n' > docs/help/Makefile.am
|
2000-07-26 13:52:19 -04:00
|
|
|
|
2007-06-17 17:29:34 -04:00
|
|
|
if test x$NOCONFIGURE = x && test -z "$*"; then
|
2000-05-09 07:42:42 -04:00
|
|
|
echo "**Warning**: I am going to run \`configure' with no arguments."
|
|
|
|
echo "If you wish to pass any to it, please specify them on the"
|
2005-09-08 07:01:21 -04:00
|
|
|
echo \`$0\'" command line."
|
2000-05-09 07:42:42 -04:00
|
|
|
echo
|
|
|
|
fi
|
|
|
|
|
2007-06-17 17:55:10 -04:00
|
|
|
rm -f aclocal.m4
|
2007-05-05 10:45:38 -04:00
|
|
|
echo "Running autoreconf ..."
|
2017-10-25 10:22:57 -04:00
|
|
|
autoreconf -i || exit $?
|
|
|
|
|
|
|
|
# make sure perl hashes have correct length
|
|
|
|
find src/perl -name '*.c' -o -name '*.xs' -exec grep -n hv_store {} + | perl -l -ne 'if (/"(\w+)",\s*(\d+)/ && $2 != length $1) { $X=1; print "Incorrect key length in $_" } END { exit $X }'
|
|
|
|
|
|
|
|
cd "$mydir"
|
2000-05-09 07:42:42 -04:00
|
|
|
|
2007-04-14 14:11:31 -04:00
|
|
|
conf_flags="--enable-maintainer-mode"
|
2000-05-09 07:42:42 -04:00
|
|
|
|
|
|
|
if test x$NOCONFIGURE = x; then
|
2017-10-25 10:22:57 -04:00
|
|
|
echo Running "$srcdir"/configure $conf_flags "$@" ...
|
|
|
|
"$srcdir"/configure $conf_flags "$@" \
|
2005-09-08 07:01:21 -04:00
|
|
|
&& echo Now type \`make\' to compile $PKG_NAME || exit 1
|
2000-05-09 07:42:42 -04:00
|
|
|
else
|
2005-09-08 07:01:21 -04:00
|
|
|
echo Skipping configure process.
|
2000-05-09 07:42:42 -04:00
|
|
|
fi
|
2018-02-12 18:03:17 -05:00
|
|
|
|
|
|
|
if grep -q '==\|\[\[' "$srcdir"/build-aux/test-driver; then
|
|
|
|
echo
|
|
|
|
echo "************************************************************************"
|
|
|
|
echo "**Warning**: your build is not portable, please do not make dist"
|
|
|
|
echo " see https://bugzilla.opensuse.org/show_bug.cgi?id=1076146"
|
|
|
|
echo "************************************************************************"
|
|
|
|
fi
|