initial import
[vuplus_webkit] / Tools / wx / install-unix-extras
1 #!/bin/sh
2
3 # Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 #
9 # 1.  Redistributions of source code must retain the above copyright
10 #     notice, this list of conditions and the following disclaimer. 
11 # 2.  Redistributions in binary form must reproduce the above copyright
12 #     notice, this list of conditions and the following disclaimer in the
13 #     documentation and/or other materials provided with the distribution. 
14 # 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15 #     its contributors may be used to endorse or promote products derived
16 #     from this software without specific prior written permission. 
17 #
18 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 # A script to download the extra libraries needed to build WebKit on UNIX-based OSes.
30 # libxml/libxslt need to be added, but so far I've had them on all the (UNIX) machines
31 # I've tested on, so I don't have a machine to test the code on.
32
33 DL_CMD="curl -L"
34
35 scriptDir="$(cd $(dirname $0);pwd)"
36 WK_ROOT=$scriptDir/../..
37 WK_ROOTDIR=$WK_ROOT
38
39 DL_DIR=/tmp/webkit-deps
40 # NOTE: If you change this, make sure the dir is on the path.
41 DEPS_PREFIX=$WK_ROOT/WebKitLibraries/unix
42 DLLEXT=so
43
44 if [ "${OSTYPE:0:6}" == "darwin" ]; then
45     DLLEXT=dylib
46 fi
47
48 mkdir -p $DL_DIR
49 mkdir -p $DEPS_PREFIX
50
51 mkdir -p $DEPS_PREFIX/bin
52 mkdir -p $DEPS_PREFIX/lib
53 mkdir -p $DEPS_PREFIX/include
54  
55 ICU_VERSION="3.4.1"
56 ICU_TARBALL="icu-$ICU_VERSION.tgz"
57 ICU_URL="ftp://ftp.software.ibm.com/software/globalization/icu/$ICU_VERSION/$ICU_TARBALL"
58
59 # dependent app, not lib, what should we do for these?
60
61 GPERF_VERSION="3.0.1"
62 GPERF_TARBALL="gperf-$GPERF_VERSION.tar.gz"
63 GPERF_URL="ftp://mirrors.kernel.org/gnu/gperf/$GPERF_TARBALL"
64
65 PKG_CONFIG_VERSION="0.20"
66 PKG_CONFIG_TARBALL="pkg-config-$PKG_CONFIG_VERSION.tar.gz"
67 PKG_CONFIG_URL="http://pkgconfig.freedesktop.org/releases/$PKG_CONFIG_TARBALL"
68
69 ICONV_VERSION="1.9.2"
70 ICONV_TARBALL="libiconv-$ICONV_VERSION.tar.gz"
71 ICONV_URL="http://ftp.gnu.org/pub/gnu/libiconv/$ICONV_TARBALL"
72
73 LIBJPEG_VERSION="6b"
74 LIBJPEG_TARBALL="jpegsrc.v$LIBJPEG_VERSION.tar.gz"
75 LIBJPEG_URL="http://wxwebkit.wxcommunity.com/downloads/deps/$LIBJPEG_TARBALL"
76
77 LIBPNG_VERSION="1.2.33"
78 LIBPNG_TARBALL="libpng-$LIBPNG_VERSION.tar.gz"
79 LIBPNG_URL="http://wxwebkit.wxcommunity.com/downloads/deps/$LIBPNG_TARBALL"
80
81 LIBCURL_VERSION="7.19.6"
82 LIBCURL_TARBALL="curl-$LIBCURL_VERSION.tar.gz"
83 LIBCURL_URL="http://curl.haxx.se/download/$LIBCURL_TARBALL"
84
85 export MAC_OS_X_DEPLOYMENT_TARGET=10.4
86
87 ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
88 SDK="/Developer/SDKs/MacOSX10.4u.sdk"
89
90 if [ ! -d $SDK ]; then
91     SDK="/Developer/SDKs/MacOSX10.5.sdk"
92 fi
93
94 if [ "${OSTYPE:0:6}" == "darwin" ]; then  
95     export CC="gcc-4.0"
96     export CXX="g++-4.0"
97 fi
98
99 cd $DL_DIR
100 # build ICU
101 if [ `which icu-config >/dev/null 2>&1` ]; then
102   $DL_CMD -o $DL_DIR/$ICU_TARBALL $ICU_URL
103
104   tar xzvf $DL_DIR/$ICU_TARBALL
105   cd $DL_DIR/icu/source
106   
107   chmod +x configure install-sh
108
109   if [ "${OSTYPE:0:6}" == "darwin" ]; then  
110     ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
111     make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
112     LDFLAGS=$ARCH_FLAGS
113     make install
114   else
115     ./configure --prefix=$DEPS_PREFIX
116   
117     make
118     #make check
119     make install
120   fi
121   cd $DL_DIR
122   rm -rf icu
123 fi
124
125 if [ ! -f $DEPS_PREFIX/lib/libjpeg.a ]; then
126   $DL_CMD -o $DL_DIR/$LIBJPEG_TARBALL $LIBJPEG_URL
127
128   tar xzvf $DL_DIR/$LIBJPEG_TARBALL
129   cd $DL_DIR/jpeg-$LIBJPEG_VERSION
130
131   # jpeg install command expects this to exist.
132   mkdir -p $DEPS_PREFIX/man/man1
133
134   if [ "${OSTYPE:0:6}" == "darwin" ]; then
135     ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
136     make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
137     LDFLAGS="$ARCH_FLAGS"
138     make install
139   else
140     ./configure --prefix=$DEPS_PREFIX
141   
142     make
143   fi
144   
145   cp libjpeg.a $DEPS_PREFIX/lib
146   cp *.h $DEPS_PREFIX/include
147   
148   cd $DL_DIR
149   rm -rf $DL_DIR/jpeg-$LIBJPEG_VERSION
150 fi
151
152 if [ ! -f $DEPS_PREFIX/lib/libpng.a ]; then
153   $DL_CMD -o $DL_DIR/$LIBPNG_TARBALL $LIBPNG_URL
154
155   tar xzvf $DL_DIR/$LIBPNG_TARBALL
156   cd $DL_DIR/libpng-$LIBPNG_VERSION
157
158   if [ "${OSTYPE:0:6}" == "darwin" ]; then
159     ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking --disable-shared
160     make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
161     LDFLAGS="$ARCH_FLAGS"
162     make install
163   else
164     ./configure --prefix=$DEPS_PREFIX
165   
166     make
167     make install
168   fi
169   
170   cd $DL_DIR
171   rm -rf $DL_DIR/libpng-$LIBPNG_VERSION
172 fi
173
174 if [ ! -f $DEPS_PREFIX/lib/libcurl.$DLLEXT ]; then
175   $DL_CMD -o $DL_DIR/$LIBCURL_TARBALL $LIBCURL_URL
176
177   tar xzvf $DL_DIR/$LIBCURL_TARBALL
178   cd $DL_DIR/curl-$LIBCURL_VERSION
179
180   if [ "${OSTYPE:0:6}" == "darwin" ]; then
181     # CURL creates different build headers for 32 and 64 bit, so to get a universal build,
182     # we must first create a 32 bit version of the header, then a 64 bit version, and
183     # have the original header simply decide which to use.
184     export CFLAGS="-O -g -isysroot $SDK -mmacosx-version-min=10.4 -arch i386 -arch ppc"
185     ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
186     
187     mkdir -p $DEPS_PREFIX/include/curl
188     
189     cp include/curl/curlbuild.h include/curl/curlbuild32.h
190     
191     make distclean
192     
193     export CFLAGS="-O -g -isysroot $SDK -mmacosx-version-min=10.4 -arch x86_64 -arch ppc64"
194     ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
195     
196     cp include/curl/curlbuild.h include/curl/curlbuild64.h
197     
198     make distclean
199     
200     export CFLAGS="-O -g -isysroot $SDK -mmacosx-version-min=10.4 $ARCH_FLAGS"
201     ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
202     
203     cat > include/curl/curlbuild.h <<EOF
204 #ifdef __LP64__
205 #include "curlbuild64.h"
206 #else
207 #include "curlbuild32.h"
208 #endif 
209 EOF
210
211     make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
212     LDFLAGS="$ARCH_FLAGS"
213     make install
214     
215     cp include/curl/curlbuild32.h $DEPS_PREFIX/include/curl/curlbuild32.h
216     cp include/curl/curlbuild64.h $DEPS_PREFIX/include/curl/curlbuild64.h
217     cp include/curl/curlbuild.h $DEPS_PREFIX/include/curl/curlbuild.h
218     
219   else
220     ./configure --prefix=$DEPS_PREFIX
221   
222     make
223     make install
224   fi
225   
226   cd $DL_DIR
227   rm -rf $DL_DIR/curl-$LIBCURL_VERSION
228 fi