diff options
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 |
commit | 2c45e2af7b0717d1b71055e7b1dc735bfc3784f4 (patch) | |
tree | dfd397f8c2d00e4eab1ffd375c85298bc434d435 /system/clusterglue/clusterglue.SlackBuild | |
parent | b2b3af6447e8b358f00cb42bab159695f40fd71b (diff) | |
download | slackbuilds-2c45e2af7b0717d1b71055e7b1dc735bfc3784f4.tar.gz |
system/clusterglue: Removed (no SBo maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/clusterglue/clusterglue.SlackBuild')
-rw-r--r-- | system/clusterglue/clusterglue.SlackBuild | 118 |
1 files changed, 0 insertions, 118 deletions
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} |