1999-09-27 18:44:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
ACLOCAL=aclocal
|
|
|
|
AUTOHEADER=autoheader
|
|
|
|
AUTOMAKE="automake -a -c --foreign"
|
|
|
|
AUTOCONF=autoconf
|
2000-01-08 21:02:58 +00:00
|
|
|
GNUM4=
|
|
|
|
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Locating GNU m4... "
|
2000-01-08 21:02:58 +00:00
|
|
|
for prog in $M4 gm4 gnum4 m4 ; do
|
|
|
|
case `$prog --version 2>&1` in
|
|
|
|
*GNU*) ok=yes
|
2000-01-12 11:16:01 +00:00
|
|
|
GNUM4=$prog
|
2000-01-08 21:02:58 +00:00
|
|
|
echo "found: $GNUM4"
|
|
|
|
break ;;
|
|
|
|
*) ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
if test x$ok = xno ; then
|
|
|
|
echo "not found."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Generate acinclude.m4
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Generate acinclude.m4... "
|
2000-06-12 11:27:15 +00:00
|
|
|
rm -f acinclude.m4 sigc++/acinclude.m4
|
2000-01-08 21:02:58 +00:00
|
|
|
touch acinclude.m4
|
2000-07-26 15:16:54 +00:00
|
|
|
for fil in config/lyxinclude.m4 config/libtool.m4 config/gettext.m4 config/lcmessage.m4 config/progtest.m4 config/sigc++.m4 config/kde.m4 config/gtk--.m4 config/gnome--.m4 ; do
|
2000-01-08 21:02:58 +00:00
|
|
|
cat $fil >> acinclude.m4
|
|
|
|
done
|
2000-06-12 11:27:15 +00:00
|
|
|
touch sigc++/acinclude.m4
|
|
|
|
for fil in config/libtool.m4 ; do
|
|
|
|
cat $fil >> sigc++/acinclude.m4
|
|
|
|
done
|
2000-01-08 21:02:58 +00:00
|
|
|
echo "done."
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-07-26 07:09:53 +00:00
|
|
|
# Generate the ext_l10n.h
|
|
|
|
echo -n "Generate the ext_l10n file..."
|
2000-07-26 10:30:09 +00:00
|
|
|
rm -f src/ext_l10n.h
|
|
|
|
# first the ui file(s)
|
2000-07-26 07:09:53 +00:00
|
|
|
grep -i -E "submenu|item|optitem" < lib/ui/default.ui | cut -d '"' -f 2 | awk '{printf "_(\"%s\");\n", $0}' > src/ext_l10n.h
|
2000-07-26 10:30:09 +00:00
|
|
|
# then the layout files
|
|
|
|
cat lib/layouts/*.layout lib/layouts/*.inc | grep -i -E "[ ]*style .+$" | cut -d ' ' -f 2 | sort | uniq | awk '{printf "_(\"%s\");\n", $0}' >> src/ext_l10n.h
|
2000-07-26 07:09:53 +00:00
|
|
|
echo "done."
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
# Generate the Makefiles and configure files
|
|
|
|
if ( aclocal --version ) </dev/null > /dev/null 2>&1; then
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Building macros... "
|
2000-06-12 11:27:15 +00:00
|
|
|
$ACLOCAL ; ( cd lib/reLyX; $ACLOCAL ) ; ( cd sigc++; $ACLOCAL )
|
2000-01-08 21:02:58 +00:00
|
|
|
echo "done."
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
|
|
|
echo "aclocal not found -- aborting"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ( autoheader --version ) </dev/null > /dev/null 2>&1; then
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Building config header template... "
|
2000-06-12 11:27:15 +00:00
|
|
|
$AUTOHEADER ; ( cd sigc++; $AUTOHEADER )
|
2000-01-08 21:02:58 +00:00
|
|
|
echo "done."
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
|
|
|
echo "autoheader not found -- aborting"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ( $AUTOMAKE --version ) </dev/null > /dev/null 2>&1; then
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Building Makefile templates... "
|
2000-06-12 11:27:15 +00:00
|
|
|
$AUTOMAKE ; ( cd lib/reLyX ; $AUTOMAKE ) ; ( cd sigc++; $AUTOMAKE )
|
2000-01-08 21:02:58 +00:00
|
|
|
echo "done."
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
|
|
|
echo "automake not found -- aborting"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ( $AUTOCONF --version ) </dev/null > /dev/null 2>&1; then
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Building configure... "
|
2000-06-12 11:27:15 +00:00
|
|
|
$AUTOCONF ; ( cd lib/reLyX ; $AUTOCONF ) ; ( cd sigc++; $AUTOCONF )
|
2000-01-08 21:02:58 +00:00
|
|
|
echo "done."
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
|
|
|
echo "autoconf not found -- aborting"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
# Autogenerate lib/configure.m4.
|
|
|
|
if test x$GNUM4 != x ; then
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Building lib/configure ... "
|
2000-01-08 21:02:58 +00:00
|
|
|
rm -f lib/configure
|
|
|
|
$GNUM4 lib/configure.m4 > lib/configure
|
|
|
|
chmod a+x lib/configure
|
|
|
|
echo "done."
|
|
|
|
else
|
|
|
|
echo "No GNU m4. Impossible to build lib/configure -- aborting"
|
1999-11-26 14:31:33 +00:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2000-01-12 11:16:01 +00:00
|
|
|
echo -n "Creating POTFILES.in... "
|
1999-10-07 18:44:17 +00:00
|
|
|
cat <<EOF > tmppot
|
|
|
|
#
|
|
|
|
# This file is automatically generated by autogen.sh. This command was
|
|
|
|
# used to extract the files from the sources:
|
|
|
|
#
|
|
|
|
# grep -E "_\(\".*\"\)" \`find src -name \*.[hHC]\` | \\
|
|
|
|
# awk 'BEGIN {FS= ":"} {print $1}' | sort | uniq
|
|
|
|
#
|
|
|
|
# This must be done when standing in lyx/
|
|
|
|
#
|
|
|
|
# This is all the files that contains internationalization strings.
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2000-07-26 07:09:53 +00:00
|
|
|
grep -l -E "_\(\".*\"\)" `find src -name \*.[hHC]` | \
|
1999-11-10 02:53:51 +00:00
|
|
|
awk 'BEGIN {FS= ":"} {print $1}' | sort -f -d | uniq >> tmppot
|
1999-10-07 18:44:17 +00:00
|
|
|
mv tmppot po/POTFILES.in
|
|
|
|
echo "done"
|
2000-01-12 11:16:01 +00:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo 'run "./configure ; make"'
|
|
|
|
echo
|