summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/ubuntu/ubuntu-bin-image
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-06-05 06:18:02 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-06-05 06:18:02 +0000
commit73ed54f2baf0fec2a842451a410e5c16d4ea45ac (patch)
treebff6b52abd26b9eace9f5b93cd36ed0992ea511a /sca-cpp/trunk/ubuntu/ubuntu-bin-image
parent70520addf9ca828a9e1c08652999902bdc8d1809 (diff)
Minor fixes to ubuntu image creation scripts.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@951659 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/ubuntu/ubuntu-bin-image')
-rwxr-xr-xsca-cpp/trunk/ubuntu/ubuntu-bin-image21
1 files changed, 13 insertions, 8 deletions
diff --git a/sca-cpp/trunk/ubuntu/ubuntu-bin-image b/sca-cpp/trunk/ubuntu/ubuntu-bin-image
index 523fcaff34..7a8e6e166c 100755
--- a/sca-cpp/trunk/ubuntu/ubuntu-bin-image
+++ b/sca-cpp/trunk/ubuntu/ubuntu-bin-image
@@ -15,8 +15,9 @@
# specific language governing permissions and limitations
# under the License.
-# Install the required system tools and libraries, the runtime dependencies and
-# the Tuscany SCA runtime on a fresh Ubuntu Server 9.10 image.
+# Install a minimal distribution including only the core runtime, support for
+# Python and C++ components, memcached and tinycdb on a fresh Ubuntu Server
+# 9.10 image.
# Display commands as they are executed
set -x
@@ -42,27 +43,31 @@ fi
#if [ "$?" != "0" ]; then
# exit $?
#fi
-sudo apt-get -y install libssl-dev
+sudo apt-get -y install libssl-dev apache2 apache2-utils apache2-prefork-dev libaprutil1-dev libapr1-dev
if [ "$?" != "0" ]; then
exit $?
fi
-sudo apt-get -y install libevent-dev
+sudo apt-get -y install curl libcurl4-openssl-dev
if [ "$?" != "0" ]; then
exit $?
fi
-sudo apt-get -y install pkg-config
+sudo apt-get -y install libxml2 libxml2-dev
if [ "$?" != "0" ]; then
exit $?
fi
-sudo apt-get -y install libboost-dev libboost-program-options-dev libboost-filesystem-dev uuid-dev
+sudo apt-get -y install xulrunner-1.9.1 xulrunner-1.9.1-dev
if [ "$?" != "0" ]; then
exit $?
fi
-sudo apt-get -y install openjdk-6-jdk
+sudo apt-get -y install python-dev
if [ "$?" != "0" ]; then
exit $?
fi
-sudo apt-get -y install bison flex
+sudo apt-get -y install memcached
+if [ "$?" != "0" ]; then
+ exit $?
+fi
+sudo apt-get -y install tinycdb libcdb-dev
if [ "$?" != "0" ]; then
exit $?
fi