Update build instructions and scripts to include the OpenID support.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@958391 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4c39768bd7
commit
33762ab759
3 changed files with 88 additions and 14 deletions
|
|
@ -96,6 +96,13 @@ Google AppEngine 1.3.2 (http://code.google.com/appengine/)
|
|||
Java:
|
||||
a Java 5+ JDK (http://openjdk.java.net/, http://harmony.apache.org/)
|
||||
|
||||
OpenID user sign in:
|
||||
Mod_auth_openid (http://trac.butterfat.net/public/mod_auth_openid)
|
||||
build it from source at http://github.com/jsdelfino/mod_auth_openid
|
||||
requires Libopkele (http://kin.klever.net/libopkele/ or
|
||||
http://github.com/jsdelfino/libopkele)
|
||||
and HTML Tidy (http://tidy.sourceforge.net/)
|
||||
|
||||
XMPP Chat:
|
||||
Apache Vysper 0.5 (http://mina.apache.org/)
|
||||
|
||||
|
|
@ -183,6 +190,7 @@ dependencies installed under $HOME:
|
|||
--enable-sqldb --with-pgsql=$HOME/postgresql-9.0-bin \
|
||||
--enable-log --with-thrift=$HOME/thrift-0.2.0-bin \
|
||||
--with-scribe=$HOME/scribe-2.2-bin \
|
||||
--enable-openid --with-mod-auth-openid=$HOME/mod-auth-openid-bin \
|
||||
--enable-maintainer-mode
|
||||
|
||||
|
||||
|
|
@ -282,21 +290,46 @@ cd qpidc-0.6
|
|||
make
|
||||
make install
|
||||
|
||||
Libstrophe:
|
||||
git clone git://code.stanziq.com/libstrophe
|
||||
cd libstrophe
|
||||
git submodule init
|
||||
git submodule update
|
||||
aclocal
|
||||
automake --add-missing --foreign --copy
|
||||
autoconf
|
||||
./configure --prefix=$HOME/libstrophe-bin
|
||||
Libexpat:
|
||||
wget http://sourceforge.net/projects/expat/files/expat/2.0.1/expat-2.0.1.tar.gz/download
|
||||
tar xzf expat-2.0.1.tar.gz
|
||||
cd expat-2.0.1
|
||||
./configure --prefix=$HOME/expat-2.0.1-bin
|
||||
make
|
||||
make install
|
||||
|
||||
Libstrophe:
|
||||
git clone git://github.com/jsdelfino/libstrophe.git
|
||||
cd libstrophe
|
||||
./bootstrap.sh
|
||||
./configure --prefix=$HOME/libstrophe-bin --with-expat=$HOME/expat-2.0.1-bin
|
||||
make
|
||||
make install
|
||||
|
||||
HTML Tidy:
|
||||
cvs -z3 -d:pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy co -P tidy
|
||||
cd tidy
|
||||
build/gnuauto/setup.sh
|
||||
./configure --prefix=$HOME/htmltidy-bin
|
||||
make
|
||||
make install
|
||||
|
||||
Libopkele:
|
||||
git clone git://github.com/jsdelfino/libopkele.git
|
||||
cd libopkele
|
||||
./autogen.bash
|
||||
./configure --prefix=$HOME/libopkele-bin --with-curl=$HOME/curl-7.19.5-bin \
|
||||
--with-expat=$HOME/expat-2.0.1-bin --with-htmltidy=$HOME/htmltidy-bin
|
||||
|
||||
Mod_auth_openid:
|
||||
git clone git://github.com/jsdelfino/mod_auth_openid.git
|
||||
cd mod_auth_openid
|
||||
./autogen.sh
|
||||
./configure --prefix=$HOME/mod-auth-openid-bin \
|
||||
--with-apr=$HOME/httpd-2.2.15-bin --with-httpd=$HOME/httpd-2.2.15-bin \
|
||||
--with-curl=$HOME/curl-7.19.5-bin --with-libopkele=$HOME/libopkele-bin
|
||||
make
|
||||
make install
|
||||
cd ..
|
||||
mkdir -p libstrophe-bin/include
|
||||
cp libstrophe/*.h libstrophe-bin/include
|
||||
cp libstrophe/src/*.h libstrophe-bin/include
|
||||
|
||||
PostgreSQL:
|
||||
wget http://wwwmaster.postgresql.org/download/mirrors-ftp/source/9.0alpha5/postgresql-9.0alpha5.tar.gz
|
||||
|
|
|
|||
|
|
@ -74,5 +74,5 @@ fi
|
|||
|
||||
# Download and install the Tuscany runtime
|
||||
wget http://people.apache.org/~jsdelfino/tuscany/test/tuscany-sca-cpp-all-1.0.tar.gz
|
||||
tar xzf tuscany-sca-cpp-1.0.tar.gz
|
||||
tar xzf tuscany-sca-cpp-all-1.0.tar.gz
|
||||
|
||||
|
|
|
|||
|
|
@ -191,6 +191,7 @@ make install
|
|||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
cd $build
|
||||
|
||||
# Install Apache Vysper
|
||||
sudo apt-get -y install openjdk-6-jdk
|
||||
|
|
@ -203,6 +204,46 @@ if [ "$?" != "0" ]; then
|
|||
exit $?
|
||||
fi
|
||||
|
||||
# Build HTML Tidy
|
||||
sudo apt-get -y install cvs
|
||||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
cvs -z3 -d:pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy co -P tidy
|
||||
cd tidy
|
||||
sh build/gnuauto/setup.sh
|
||||
./configure --prefix=$build/htmltidy-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
cd $build
|
||||
|
||||
# Build Libopkele
|
||||
git clone git://github.com/jsdelfino/libopkele.git
|
||||
cd libopkele
|
||||
./autogen.bash
|
||||
./configure --prefix=$build/libopkele-bin --with-curl=$build/curl-7.19.5-bin --with-expat=$build/expat-2.0.1-bin --with-htmltidy=$build/htmltidy-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
cd $build
|
||||
|
||||
# Build Mod_auth_openid
|
||||
git clone git://github.com/jsdelfino/mod_auth_openid.git
|
||||
cd mod_auth_openid
|
||||
./autogen.sh
|
||||
./configure --prefix=$build/mod-auth-openid-bin --with-apr=$build/httpd-2.2.15-bin --with-httpd=$build/httpd-2.2.15-bin --with-curl=$build/curl-7.19.5-bin --with-libopkele=$build/libopkele-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
cd $build
|
||||
|
||||
# Build PostgreSQL
|
||||
sudo apt-get -y install libreadline-dev
|
||||
if [ "$?" != "0" ]; then
|
||||
|
|
@ -281,7 +322,7 @@ git clone git://git.apache.org/tuscany-sca-cpp.git
|
|||
cd tuscany-sca-cpp
|
||||
cp etc/git-exclude .git/info/exclude
|
||||
./bootstrap
|
||||
./configure --prefix=$build/tuscany-sca-cpp-bin --with-curl=$build/curl-7.19.5-bin --with-apr=$build/httpd-2.2.15-bin --with-httpd=$build/httpd-2.2.15-bin --with-memcached=$build/memcached-1.4.4-bin --with-tinycdb=$build/tinycdb-0.77-bin --with-js-include=$build/tracemonkey-bin/include/js --with-js-lib=$build/tracemonkey-bin/lib --with-libcloud=$build/libcloud-0.3.1-bin --enable-threads --enable-python --enable-gae --with-gae=$build/google_appengine --enable-java --with-java=/usr/lib/jvm/java-6-openjdk --enable-webservice --with-libxml2=$build/libxml2-2.7.7-bin --with-axis2c=$build/axis2c-1.6.0-bin --enable-queue --with-qpidc=$build/qpidc-0.6-bin --enable-chat --with-libstrophe=$build/libstrophe-bin --with-vysper=$build/vysper-0.5 --enable-sqldb --with-pgsql=$build/postgresql-9.0-bin --enable-log --with-thrift=$build/thrift-0.2.0-bin --with-scribe=$build/scribe-2.2-bin
|
||||
./configure --prefix=$build/tuscany-sca-cpp-bin --with-curl=$build/curl-7.19.5-bin --with-apr=$build/httpd-2.2.15-bin --with-httpd=$build/httpd-2.2.15-bin --with-memcached=$build/memcached-1.4.4-bin --with-tinycdb=$build/tinycdb-0.77-bin --with-js-include=$build/tracemonkey-bin/include/js --with-js-lib=$build/tracemonkey-bin/lib --with-libcloud=$build/libcloud-0.3.1-bin --enable-threads --enable-python --enable-gae --with-gae=$build/google_appengine --enable-java --with-java=/usr/lib/jvm/java-6-openjdk --enable-webservice --with-libxml2=$build/libxml2-2.7.7-bin --with-axis2c=$build/axis2c-1.6.0-bin --enable-queue --with-qpidc=$build/qpidc-0.6-bin --enable-chat --with-libstrophe=$build/libstrophe-bin --with-vysper=$build/vysper-0.5 --enable-sqldb --with-pgsql=$build/postgresql-9.0-bin --enable-log --with-thrift=$build/thrift-0.2.0-bin --with-scribe=$build/scribe-2.2-bin --enable-openid --with-mod-auth-openid=$build/mod-auth-openid-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
|
|
@ -290,5 +331,5 @@ fi
|
|||
cd $build
|
||||
|
||||
# Create bin archive
|
||||
tar czf tuscany-sca-cpp-1.0.tar.gz tuscany-sca-cpp tuscany-sca-cpp-bin axis2c-1.6.0-bin libxml2-2.7.7-bin curl-7.19.5-bin httpd-2.2.15-bin tracemonkey-bin google_appengine libstrophe-bin memcached-1.4.4-bin tinycdb-0.77-bin qpidc-0.6-bin vysper-0.5 postgresql-9.0-bin thrift-0.2.0-bin scribe-2.2-bin libcloud-0.3.1-bin
|
||||
tar czf tuscany-sca-cpp-all-1.0.tar.gz tuscany-sca-cpp tuscany-sca-cpp-bin axis2c-1.6.0-bin libxml2-2.7.7-bin curl-7.19.5-bin httpd-2.2.15-bin tracemonkey-bin google_appengine libstrophe-bin memcached-1.4.4-bin tinycdb-0.77-bin qpidc-0.6-bin vysper-0.5 postgresql-9.0-bin thrift-0.2.0-bin scribe-2.2-bin libcloud-0.3.1-bin htmltidy-bin libopkele-bin mod-auth-openid-bin
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue