diff options
author | Zordrak <slackbuilds@tpa.me.uk> | 2010-04-18 01:04:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-15 10:38:20 +0200 |
commit | 947cf099946d354113b4837c08abcc167bc8a369 (patch) | |
tree | 16e2d5db990dbb65b2938dad2f38266b0e5211c1 /system/clusterresourceagents/clusterresourceagents.SlackBuild | |
parent | 906ac354a1bcf4d0fde922341410d042084497ae (diff) | |
download | slackbuilds-947cf099946d354113b4837c08abcc167bc8a369.tar.gz |
system/clusterresourceagents: Added (Resource Agents for HA-Linux)
Diffstat (limited to 'system/clusterresourceagents/clusterresourceagents.SlackBuild')
-rw-r--r-- | system/clusterresourceagents/clusterresourceagents.SlackBuild | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/system/clusterresourceagents/clusterresourceagents.SlackBuild b/system/clusterresourceagents/clusterresourceagents.SlackBuild new file mode 100644 index 0000000000..2fec88e79b --- /dev/null +++ b/system/clusterresourceagents/clusterresourceagents.SlackBuild @@ -0,0 +1,93 @@ +#!/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:-000dd8956ad7} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$VERSION.tar.bz2 +mv Cluster-Resource-Agents-$VERSION clusterresourceagents-$VERSION +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -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 INSTALL 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} |