From 84afe17caeefc4b3d5701a06c2a0edf889b07adb Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 27 Mar 2012 14:26:47 +0000 Subject: 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 --- bin/install-cpp-python | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100755 bin/install-cpp-python (limited to 'bin/install-cpp-python') 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 < +-p : 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 + + -- cgit v1.2.1