]> git.lyx.org Git - lyx.git/blob - autogen.sh
a4086511e776f8023aec670fc52046f66faa8462
[lyx.git] / autogen.sh
1 #!/bin/sh
2
3 ACLOCAL=aclocal
4 AUTOHEADER=autoheader
5 AUTOMAKE="automake -a -c --foreign"
6 AUTOCONF=autoconf
7
8 # Generate the Makefiles and configure files
9 if ( aclocal --version ) </dev/null > /dev/null 2>&1; then
10         echo "Building macros."
11         $ACLOCAL ; (cd lib/reLyX; $ACLOCAL )
12 else
13         echo "aclocal not found -- aborting"
14         exit
15 fi
16
17 if ( autoheader --version ) </dev/null > /dev/null 2>&1; then
18         echo "Building config header template"
19         $AUTOHEADER
20 else
21         echo "autoheader not found -- aborting"
22         exit
23 fi
24
25 if ( $AUTOMAKE --version ) </dev/null > /dev/null 2>&1; then
26         echo "Building Makefile templates"
27         $AUTOMAKE ; (cd lib/reLyX ; $AUTOMAKE )
28 else
29         echo "automake not found -- aborting"
30         exit
31 fi
32
33 if ( $AUTOCONF --version ) </dev/null > /dev/null 2>&1; then
34         echo "Building configure"
35         $AUTOCONF ; ( cd lib/reLyX ; $AUTOCONF )
36         echo 'run "./configure ; make"'
37 else
38         echo "autoconf not found -- aborting"
39         exit
40 fi
41
42 # Autogenerate lib/configure.m4. We need GNU m4 for that and thus have
43 # to try several ones.  
44 ok=no
45 for prog in $M4 gm4 gnum4 m4 ; do
46   case `$prog --help < /dev/null 2>&1 | grep traditional` in
47     *traditional*) echo "Building lib/configure"
48                    rm -f lib/configure
49                    $prog lib/configure.m4 >lib/configure
50                    ok=yes
51                    break ;;
52     *) ;;
53   esac
54 done
55 if test $ok = no ; then
56     echo "GNU m4 not found -- aborting"
57     exit
58 fi
59
60 echo "Creating POTFILES.in..."
61 cat <<EOF > tmppot
62 #
63 # This file is automatically generated by autogen.sh. This command was
64 # used to extract the files from the sources:
65 #
66 # grep -E "_\(\".*\"\)" \`find src -name \*.[hHC]\` | \\
67 # awk 'BEGIN {FS= ":"} {print $1}' | sort | uniq
68 #
69 # This must be done when standing in lyx/
70 #
71 # This is all the files that contains internationalization strings.
72
73 EOF
74
75 grep -E "_\(\".*\"\)" `find src -name \*.[hHC]` | \
76 awk 'BEGIN {FS= ":"} {print $1}' | sort -f -d | uniq >> tmppot
77 mv tmppot po/POTFILES.in
78 echo "done"