system/clusterglue: Removed (no SBo maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b2b3af6447
commit
2c45e2af7b
|
@ -1,4 +0,0 @@
|
|||
clusterglue (The interesting parts of Heartbeat without the ****)
|
||||
|
||||
Also known as Reusable Cluster Components, Cluster Glue is the heart
|
||||
of the Heartbeat / OpenAIS / Corosync / Pacemaker application stack.
|
|
@ -1,118 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||
# Copyright 2009 Eric Hameleers <alien@slackware.com>, Eindhoven, Netherlands
|
||||
|
||||
# Slackware build script for clusterglue
|
||||
|
||||
# Written by Zordrak <sbo@tpa.me.uk>
|
||||
|
||||
# Based on http://slackbuilds.org/template.SlackBuild
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=clusterglue
|
||||
VERSION=${VERSION:-5e06b2ddd24b}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
# Bail out if assigned user or group isn't valid on your system
|
||||
# See http://slackbuilds.org/uid_gid.txt
|
||||
if ! grep ^haclient: /etc/group 2>&1 > /dev/null; then
|
||||
echo " You must have a \"haclient\" group to run this script."
|
||||
echo " # groupadd -g 226 haclient"
|
||||
exit 1
|
||||
elif ! grep ^hacluster: /etc/passwd 2>&1 > /dev/null; then
|
||||
echo " You must have a \"hacluster\" user to run this script."
|
||||
echo " # useradd -u 226 -g haclient -c \"Cluster User\" -d /var/lib/heartbeat/cores/hacluster -s /bin/false hacluster"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/Reusable-Cluster-Components-glue--$VERSION.tar.bz2
|
||||
mv Reusable-Cluster-Components-glue--$VERSION clusterglue-$VERSION
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Starting with glib 2.32 it is now mandatory to
|
||||
# include glib.h instead of individual headers.
|
||||
patch -p1 -i $CWD/glib-single-include.patch
|
||||
|
||||
./autogen.sh
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-ais-prefix=$PREFIX \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--enable-fatal-warnings=no \
|
||||
--with-initdir=/etc/rc.d \
|
||||
--with-snmp \
|
||||
--enable-bundled-ltdl \
|
||||
--enable-libnet
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING COPYING.LIB ChangeLog README INSTALL NEWS \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mv $PKG/etc/rc.d/logd $PKG/etc/rc.d/rc.logd.new
|
||||
chmod +x $PKG/etc/rc.d/rc.logd.new
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="clusterglue"
|
||||
VERSION="5e06b2ddd24b"
|
||||
HOMEPAGE="http://clusterlabs.org"
|
||||
DOWNLOAD="http://hg.linux-ha.org/glue/archive/5e06b2ddd24b.tar.bz2"
|
||||
MD5SUM="91778b8ac4cced63760bf7bf86eee301"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="libesmtp libnet"
|
||||
MAINTAINER="Zordrak"
|
||||
EMAIL="slackbuilds@tpa.me.uk"
|
|
@ -1,17 +0,0 @@
|
|||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
rm $NEW
|
||||
fi
|
||||
}
|
||||
|
||||
if [ -e etc/rc.d/rc.logd ]; then
|
||||
cp -a etc/rc.d/rc.logd etc/rc.d/rc.logd.new.incoming
|
||||
cat etc/rc.d/rc.logd.new > etc/rc.d/rc.logd.new.incoming
|
||||
mv etc/rc.d/rc.logd.new.incoming etc/rc.d/rc.logd.new
|
||||
fi
|
||||
|
||||
config etc/rc.d/rc.logd.new
|
|
@ -1,13 +0,0 @@
|
|||
Index: Reusable-Cluster-Components-glue--5e06b2ddd24b/include/clplumbing/cl_uuid.h
|
||||
===================================================================
|
||||
--- Reusable-Cluster-Components-glue--5e06b2ddd24b.orig/include/clplumbing/cl_uuid.h
|
||||
+++ Reusable-Cluster-Components-glue--5e06b2ddd24b/include/clplumbing/cl_uuid.h
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
#ifndef _CL_UUID_H_
|
||||
#define _CL_UUID_H_
|
||||
-#include <glib/gtypes.h>
|
||||
+#include <glib.h>
|
||||
|
||||
typedef struct cl_uuid_s{
|
||||
unsigned char uuid[16];
|
|
@ -1,20 +0,0 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
clusterglue: clusterglue (The interesting parts of Heartbeat without the ****)
|
||||
clusterglue:
|
||||
clusterglue: Also known as Reusable Cluster Components, Cluster Glue is the heart
|
||||
clusterglue: of the Heartbeat / OpenAIS / Corosync / Pacemaker application stack.
|
||||
clusterglue:
|
||||
clusterglue: Cluster Glue is the base dependency of all that lives on top, i.e.
|
||||
clusterglue: Install This First.
|
||||
clusterglue:
|
||||
clusterglue:
|
||||
clusterglue: Homepage: http://clusterlabs.org
|
||||
clusterglue:
|
||||
|
Loading…
Reference in New Issue