summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-20 08:29:49 +0700
committer Robby Workman <rworkman@slackbuilds.org>2013-11-24 00:07:15 -0600
commit2c45e2af7b0717d1b71055e7b1dc735bfc3784f4 (patch)
treedfd397f8c2d00e4eab1ffd375c85298bc434d435 /system
parentb2b3af6447e8b358f00cb42bab159695f40fd71b (diff)
downloadslackbuilds-2c45e2af7b0717d1b71055e7b1dc735bfc3784f4.tar.gz
slackbuilds-2c45e2af7b0717d1b71055e7b1dc735bfc3784f4.tar.xz
system/clusterglue: Removed (no SBo maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/clusterglue/README4
-rw-r--r--system/clusterglue/clusterglue.SlackBuild118
-rw-r--r--system/clusterglue/clusterglue.info10
-rw-r--r--system/clusterglue/doinst.sh17
-rw-r--r--system/clusterglue/glib-single-include.patch13
-rw-r--r--system/clusterglue/slack-desc20
6 files changed, 0 insertions, 182 deletions
diff --git a/system/clusterglue/README b/system/clusterglue/README
deleted file mode 100644
index 401e1069ee..0000000000
--- a/system/clusterglue/README
+++ /dev/null
@@ -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.
diff --git a/system/clusterglue/clusterglue.SlackBuild b/system/clusterglue/clusterglue.SlackBuild
deleted file mode 100644
index fd7109f995..0000000000
--- a/system/clusterglue/clusterglue.SlackBuild
+++ /dev/null
@@ -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}
diff --git a/system/clusterglue/clusterglue.info b/system/clusterglue/clusterglue.info
deleted file mode 100644
index bfde02eac6..0000000000
--- a/system/clusterglue/clusterglue.info
+++ /dev/null
@@ -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"
diff --git a/system/clusterglue/doinst.sh b/system/clusterglue/doinst.sh
deleted file mode 100644
index 5a19c488c6..0000000000
--- a/system/clusterglue/doinst.sh
+++ /dev/null
@@ -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
diff --git a/system/clusterglue/glib-single-include.patch b/system/clusterglue/glib-single-include.patch
deleted file mode 100644
index b5989b103f..0000000000
--- a/system/clusterglue/glib-single-include.patch
+++ /dev/null
@@ -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];
diff --git a/system/clusterglue/slack-desc b/system/clusterglue/slack-desc
deleted file mode 100644
index 4ad6c6f367..0000000000
--- a/system/clusterglue/slack-desc
+++ /dev/null
@@ -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:
-