diff options
author | Alan Conway <aconway@apache.org> | 2012-03-27 14:26:47 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2012-03-27 14:26:47 +0000 |
commit | 84afe17caeefc4b3d5701a06c2a0edf889b07adb (patch) | |
tree | 0cde7e9dfdf38ff8a877c5c90f945ef3d5ba28b6 /bin/install-cpp-python | |
parent | 95049a0fc8d159736a770f47c17b35bbac35ab4d (diff) | |
download | qpid-python-84afe17caeefc4b3d5701a06c2a0edf889b07adb.tar.gz |
QPID-3603: Install scripts and configuration for qpid HA rgmanager integration.
qpid/bin/install-cpp-python: installs c++ and python builds.
qpid/cpp/etc/Makefile.am: installs init.d scripts.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1305851 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bin/install-cpp-python')
-rwxr-xr-x | bin/install-cpp-python | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/bin/install-cpp-python b/bin/install-cpp-python new file mode 100755 index 0000000000..d43e8e4899 --- /dev/null +++ b/bin/install-cpp-python @@ -0,0 +1,76 @@ +#!/bin/sh +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + + +# +# Install C++ build and python tools to the standard places in a Unix buld +# WARNING: Will destroy any existing installation! +# + +# NOTE: build must be configured like this: +# ../qpid/cpp/configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64 +# NOTE: Must run as root. + +usage() { + cat <<EOF +Usage $0 -pc <cpp-build-directory> +-p <prefix> : Prefix to install python +-s : Skip C++ installation +EOF + + exit 1 +} + +fail() { echo $*; exit 1; } + +while getopts "ps" opt; do + case $opt in + p) PY_PREFIX="--prefix $OPTARG";; + s) SKIP_CPP=1;; + *) usage;; + esac +done +shift `expr $OPTIND - 1` +BUILD=$1 +SRC=$(dirname $0)/.. + +# Install python +cd $SRC || fail "No such directory: $SRC" +for d in python tools extras/qmf; do + ( + cd $d || fail "No such directory: $(pwd)/$d" + ./setup.py install || fail Python install failed in $(pwd) + ) +done + +if test $SKIP_CPP; then exit; fi + +test -n "$BUILD" || { echo "No build directory."; usage; } +test -d "$BUILD" || fail "No such directory: $BUILD" +SRC=$(dirname $BUILD) + + # Install C++ +cd $BUILD +make -j1 install || fail "C++ install failed in $BUILD" + +# NOTE: setup.py does not uninstall, but you can get a list of files installed with: +# setup.py install --record <output-file> + + |