annotate autogen.sh @ 9644:d8220ad46879 HEAD

autogen.sh updated to use wiki1-export.tar.gz
author Timo Sirainen <tss@iki.fi>
date Wed, 11 May 2011 18:03:31 +0300
parents 44db0de1bbd3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4988
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
1 #!/bin/sh
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
2
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
3 # If you've non-standard directories, set these
4990
786556485e91 Comment out the configurable dir environments.
Timo Sirainen <tss@iki.fi>
parents: 4988
diff changeset
4 #ACLOCAL_DIR=
786556485e91 Comment out the configurable dir environments.
Timo Sirainen <tss@iki.fi>
parents: 4988
diff changeset
5 #GETTEXT_DIR=
4988
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
6
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
7 if test "$ACLOCAL_DIR" != ""; then
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
8 ACLOCAL="aclocal -I $ACLOCAL_DIR"
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
9 export ACLOCAL
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
10 fi
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
11
9198
44db0de1bbd3 autogen.sh: Look up config.rpath also from /usr/local/shared/gettext/.
Timo Sirainen <tss@iki.fi>
parents: 8523
diff changeset
12 for dir in $GETTEXT_DIR /usr/share/gettext /usr/local/share/gettext; do
4988
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
13 if test -f $dir/config.rpath; then
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
14 /bin/cp -f $dir/config.rpath .
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
15 break
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
16 fi
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
17 done
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
18
5501
e9745c1c4d14 Fixed to work with POSIX sh.
Timo Sirainen <tss@iki.fi>
parents: 5441
diff changeset
19 if test ! -f doc/wiki/Authentication.txt; then
5441
9d36800df1ae Added documentation to doc/wiki/. autogen.sh downloads them from dovecot.org
Timo Sirainen <tss@iki.fi>
parents: 5057
diff changeset
20 cd doc
9644
d8220ad46879 autogen.sh updated to use wiki1-export.tar.gz
Timo Sirainen <tss@iki.fi>
parents: 9198
diff changeset
21 wget http://www.dovecot.org/tmp/wiki1-export.tar.gz
d8220ad46879 autogen.sh updated to use wiki1-export.tar.gz
Timo Sirainen <tss@iki.fi>
parents: 9198
diff changeset
22 tar xzf wiki1-export.tar.gz
d8220ad46879 autogen.sh updated to use wiki1-export.tar.gz
Timo Sirainen <tss@iki.fi>
parents: 9198
diff changeset
23 mv wiki1-export/*.txt wiki/
d8220ad46879 autogen.sh updated to use wiki1-export.tar.gz
Timo Sirainen <tss@iki.fi>
parents: 9198
diff changeset
24 rm -rf wiki1-export wiki1-export.tar.gz
5441
9d36800df1ae Added documentation to doc/wiki/. autogen.sh downloads them from dovecot.org
Timo Sirainen <tss@iki.fi>
parents: 5057
diff changeset
25 cd ..
9d36800df1ae Added documentation to doc/wiki/. autogen.sh downloads them from dovecot.org
Timo Sirainen <tss@iki.fi>
parents: 5057
diff changeset
26 fi
9d36800df1ae Added documentation to doc/wiki/. autogen.sh downloads them from dovecot.org
Timo Sirainen <tss@iki.fi>
parents: 5057
diff changeset
27
5532
Timo Sirainen <tss@iki.fi>
parents: 5501
diff changeset
28 cd doc/wiki
Timo Sirainen <tss@iki.fi>
parents: 5501
diff changeset
29 cp -f Makefile.am.in Makefile.am
Timo Sirainen <tss@iki.fi>
parents: 5501
diff changeset
30 echo *.txt | sed 's, , \\/ ,g' | tr '/' '\n' >> Makefile.am
Timo Sirainen <tss@iki.fi>
parents: 5501
diff changeset
31 cd ../..
Timo Sirainen <tss@iki.fi>
parents: 5501
diff changeset
32
5057
d86ee13688d5 Removed -f option from autoreconf, since it overwrites our INSTALL file.
Timo Sirainen <tss@iki.fi>
parents: 5000
diff changeset
33 autoreconf -i