Merged silc_1_0_branch to trunk.
[silc.git] / prepare
1 #! /bin/sh
2 #
3 #  prepare
4 #
5 #  Author: Pekka Riikonen <priikone@silcnet.org>
6 #
7 #  Copyright (C) 2000 - 2002 Pekka Riikonen
8 #
9 #  This program is free software; you can redistribute it and/or modify
10 #  it under the terms of the GNU General Public License as published by
11 #  the Free Software Foundation; version 2 of the License.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 #
20 # Prepares SILC source tree for configuration and compilation. This is
21 # done only after checkout from CVS. This is only for developers of SILC
22 # and will never appear in public distribution. When creating distributions
23 # this is always run first. After the distribution is created all
24 # temporary files (including these prepare* scripts) are removed.
25 #
26
27 #
28 # Usage: ./prepare [<distribution> <package version>]
29 #
30 # If <package version> is omitted <base version> is used as package
31 # version.  The package version appears in the package name and in those
32 # distributions that used the SILC_DIST_VERSION_STRING define in the
33 # code.  The base version is the SILC_VERSION_STRING define.
34 #
35
36 #
37 # SILC Distribution versions. Set here or give the version on the command
38 # line as argument.
39 #
40 SILC_VERSION=0.9.10                     # Base version
41
42 #############################################################################
43
44 echo "Preparing SILC source tree for configuration and compilation..."
45
46 distribution=$1
47 if test "$distribution" = ""; then
48   distribution="toolkit";
49 fi
50
51 dist_version=$2
52 if test "$dist_version" = ""; then
53   dist_version=$SILC_VERSION
54 fi
55
56
57 echo "Preparing $distribution distribution version $dist_version"
58
59 #
60 # Go though the subdirs and create the Makefile.ams from the
61 # Makefile.am.pre files.
62 #
63 subdirs=`grep "$distribution"_SUBDIRS= distributions |cut -d=  -f2`
64 ed=`grep "$distribution"_EXTRA_DIST= distributions |cut -d=  -f2`
65 sed -e "/SILC_DISTRIBUTION_EXTRA/s,,$ed," Makefile.am.pre >Makefile.am
66 path=`pwd`
67 for i in $subdirs
68 do
69   cd $i
70   sub=`grep "$distribution"_SUBDIRS_"$i"= $path/distributions |cut -d=  -f2`
71   if test "$sub" = ""; then
72     cd $path
73     continue;
74   fi
75   if [ -f Makefile.am.pre ]; then
76     sed -e "/SILC_DISTRIBUTION_SUBDIRS/s//$sub/" -e "/SILC_DISTRIBUTION_SUBDIRS/s//$sub/" Makefile.am.pre >Makefile.am 2>/dev/null
77   fi
78   cd $path
79 done
80 cd $path
81
82
83 #
84 # Replace version string, package name and distribution infos, and create 
85 # the actual configure.in
86 #
87 echo "# Automatically generated by ./prepare from configure.in.pre. Do not edit!" >configure.in2
88 sed -e "/SILC_DISTRIBUTION_SUBDIRS/s//$subdirs/" -e "/SILC_VERSION/s//$dist_version/" -e "/SILC_PACKAGE/s//silc-"$distribution"/" configure.in.pre >>configure.in2
89
90 #
91 # Create also the acconfig.h for the distribution. Note that this sets
92 # also dist labels for distributions that are not defined.
93 #
94 cp acconfig.h.pre acconfig.h
95 dists=`grep DISTRIBUTIONS= distributions |cut -d=  -f2`
96 touch am_cond
97 for i in $dists
98 do
99   dl=`grep "$i"_DISTLABEL= distributions |cut -d=  -f2`
100   echo "#undef $dl" >>acconfig.h
101   if test "$i" = "$distribution"; then
102     echo "AM_CONDITIONAL($dl, test xtrue = xtrue)" >>am_cond
103   else
104     echo "AM_CONDITIONAL($dl, test xtrue = xfalse)" >>am_cond
105   fi
106 done
107
108 sed '/SILC_DIST_DEFINE/ r am_cond' configure.in2 >configure.in3
109 dl=`grep "$distribution"_DISTLABEL= distributions |cut -d=  -f2`
110 sed -e "/SILC_DIST_DEFINE/s//$dl/" configure.in3 >configure.in
111 rm -f configure.in2 configure.in3 am_cond
112
113
114 #
115 # Prepare the Makefile.defines
116 #
117 cp Makefile.defines.pre Makefile.defines.in
118 cp Makefile.defines_int.pre Makefile.defines_int.in
119 cp Makefile.defines.in irssi
120 cp Makefile.defines_int.in irssi
121 cp Makefile.defines.in lib/silcmath/mpi
122 cp Makefile.defines_int.in lib/silcmath/mpi
123
124 aclocal
125 autoconf
126 autoheader >/dev/null 2>/dev/null
127 libtoolize --automake --copy
128 automake
129
130 echo "Preparing mpi"
131 cd lib/silcmath/mpi
132 aclocal
133 autoconf
134 autoheader >/dev/null 2>/dev/null
135 libtoolize --automake --copy
136 automake >/dev/null 2>/dev/null
137 cd ../../..
138
139 file=includes/version_internal.h
140 echo "/* Automatically generated by ./prepare */" >$file
141 echo "#define SILC_VERSION_STRING \"$dist_version\"" >>$file
142 echo "#define SILC_DIST_VERSION_STRING \"$dist_version\"" >>$file
143 echo "#define SILC_PROTOCOL_VERSION_STRING \"SILC-1.2-$dist_version $distribution\"" >>$file
144 echo "#define SILC_NAME \"SILC $distribution\"" >>$file
145
146 # preparing irssi
147 echo "Preparing irssi"
148 cd irssi
149 sh autogen.sh 2>/dev/null 1>/dev/null
150 cd ..
151 file=irssi/irssi-version.h.in
152 version_date=`date +%Y%m%d`
153 echo "/* automatically created by autogen.sh */" > $file
154 echo "#define IRSSI_VERSION \"$dist_version (Irssi base: @VERSION@ - SILC base: SILC $dist_version)\"" >>$file
155 echo "#define IRSSI_VERSION_DATE $version_date" >> $file
156 echo "#define IRSSI_VERSION_TIME $version_date" >> $file
157
158 echo "Done, now run ./configure and make."