summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-20 08:30:12 +0700
committer Robby Workman <rworkman@slackbuilds.org>2013-11-24 00:07:18 -0600
commit1f6b7527580c0d3a57037236bf9d746013b6e7f8 (patch)
treeff4310d95e4d989d45b0eef0a30cbc54022c9107 /system
parent2c45e2af7b0717d1b71055e7b1dc735bfc3784f4 (diff)
downloadslackbuilds-1f6b7527580c0d3a57037236bf9d746013b6e7f8.tar.gz
slackbuilds-1f6b7527580c0d3a57037236bf9d746013b6e7f8.tar.xz
system/clusterresourceagents: Removed (no SBo maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/clusterresourceagents/README6
-rw-r--r--system/clusterresourceagents/clusterresourceagents.SlackBuild102
-rw-r--r--system/clusterresourceagents/clusterresourceagents.info10
-rw-r--r--system/clusterresourceagents/doinst.sh32
-rw-r--r--system/clusterresourceagents/slack-desc20
5 files changed, 0 insertions, 170 deletions
diff --git a/system/clusterresourceagents/README b/system/clusterresourceagents/README
deleted file mode 100644
index b6e516e7aa..0000000000
--- a/system/clusterresourceagents/README
+++ /dev/null
@@ -1,6 +0,0 @@
-clusterresourceagents (OCF Resource Agents for HA-Linux)
-
-OCF resource agents for use by compatible cluster managers (formerly
-part of Heartbeat). Basically, just another core and required
-component of the Linux-HA (i.e. heartbeat/pacemaker/openais/corosync)
-software stack.
diff --git a/system/clusterresourceagents/clusterresourceagents.SlackBuild b/system/clusterresourceagents/clusterresourceagents.SlackBuild
deleted file mode 100644
index fd824aad33..0000000000
--- a/system/clusterresourceagents/clusterresourceagents.SlackBuild
+++ /dev/null
@@ -1,102 +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=clusterresourceagents
-VERSION=${VERSION:-20120918_a796f39}
-BUILD=${BUILD:-1}
-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
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
-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 {} \;
-
-./autogen.sh
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux \
- --with-initdir=/etc/rc.d \
- --enable-libnet \
- --disable-fatal-warnings
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING ChangeLog README NEWS \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mv $PKG/etc/logrotate.d/ldirectord $PKG/etc/logrotate.d/ldirectord.new
-mv $PKG/etc/rc.d/ldirectord $PKG/etc/rc.d/rc.ldirectord.new
-mv $PKG/etc/ha.d/shellfuncs $PKG/etc/ha.d/shellfuncs.new
-chmod +x $PKG/etc/rc.d/rc.ldirectord.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/clusterresourceagents/clusterresourceagents.info b/system/clusterresourceagents/clusterresourceagents.info
deleted file mode 100644
index 95481d5b8c..0000000000
--- a/system/clusterresourceagents/clusterresourceagents.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="clusterresourceagents"
-VERSION="20120918_a796f39"
-HOMEPAGE="http://clusterlabs.org"
-DOWNLOAD="http://ponce.cc/slackware/sources/repo/clusterresourceagents-20120918_a796f39.tar.xz"
-MD5SUM="88376f500a9a56c597989dc936893997"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="clusterglue"
-MAINTAINER="Zordrak"
-EMAIL="slackbuilds@tpa.me.uk"
diff --git a/system/clusterresourceagents/doinst.sh b/system/clusterresourceagents/doinst.sh
deleted file mode 100644
index 5945851bbf..0000000000
--- a/system/clusterresourceagents/doinst.sh
+++ /dev/null
@@ -1,32 +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.ldirectord ]; then
- cp -a etc/rc.d/rc.ldirectord etc/rc.d/rc.ldirectord.new.incoming
- cat etc/rc.d/rc.ldirectord.new > etc/rc.d/rc.ldirectord.new.incoming
- mv etc/rc.d/rc.ldirectord.new.incoming etc/rc.d/rc.ldirectord.new
-fi
-
-if [ -e etc/logrotate.d/ldirectord ]; then
- cp -a etc/logrotate.d/ldirectord etc/logrotate.d/ldirectord.new.incoming
- cat etc/logrotate.d/ldirectord.new > etc/logrotate.d/ldirectord.new.incoming
- mv etc/logrotate.d/ldirectord.new.incoming etc/logrotate.d/ldirectord.new
-fi
-
-if [ -e etc/ha.d/shellfuncs ]; then
- cp -a etc/ha.d/shellfuncs etc/ha.d/shellfuncs.new.incoming
- cat etc/ha.d/shellfuncs.new > etc/ha.d/shellfuncs.new.incoming
- mv etc/ha.d/shellfuncs.new.incoming etc/ha.d/shellfuncs.new
-fi
-
-config etc/rc.d/rc.ldirectord.new
-config etc/logrotate.d/ldirectord.new
-config etc/ha.d/shellfuncs.new
-
diff --git a/system/clusterresourceagents/slack-desc b/system/clusterresourceagents/slack-desc
deleted file mode 100644
index f022f516c5..0000000000
--- a/system/clusterresourceagents/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------------------------------------------------------|
-clusterresourceagents: clusterresourceagents (OCF Resource Agents for HA-Linux)
-clusterresourceagents:
-clusterresourceagents: OCF resource agents for use by compatible cluster managers (formerly
-clusterresourceagents: part of Heartbeat). Basically, just another core and required
-clusterresourceagents: component of the Linux-HA (i.e. heartbeat/pacemaker/openais/corosync)
-clusterresourceagents: software stack.
-clusterresourceagents:
-clusterresourceagents: This is the second package in the dependency tree.
-clusterresourceagents: Install clusterglue first.
-clusterresourceagents:
-clusterresourceagents: Homepage: http://clusterlabs.org
-