2004-11-24 19:37:45 -08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
rm -f aclocal.m4
|
|
|
|
|
|
|
|
echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
|
|
|
|
&& echo "Running autoheader..."; autoheader \
|
|
|
|
&& echo "Running autoconf..."; autoconf \
|
2005-01-21 22:56:56 -08:00
|
|
|
&& echo "Running libtoolize..."; ( libtoolize --automake || glibtoolize --automake ) \
|
2005-04-11 13:25:52 -07:00
|
|
|
&& echo "Running automake..."; automake --add-missing --copy --gnu \
|
|
|
|
&& echo "Generating gettext enlightenment.pot template"; \
|
|
|
|
xgettext \
|
|
|
|
-n \
|
|
|
|
-C \
|
|
|
|
-d enlightenment \
|
|
|
|
-p po \
|
|
|
|
--copyright-holder="Enlightenment development team" \
|
|
|
|
--foreign-user \
|
|
|
|
--msgid-bugs-address="enlightenment-devel@lists.sourceforge.net" \
|
|
|
|
-k -k_ -kd_ \
|
|
|
|
--from-code=UTF-8 \
|
|
|
|
-o enlightenment.pot \
|
|
|
|
`find . -name "*.[ch]" -print`
|
2004-11-24 19:37:45 -08:00
|
|
|
|
2005-04-26 15:55:56 -07:00
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
|
|
./configure "$@"
|
|
|
|
fi
|