diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 10:34:52 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-23 23:21:39 -0500 |
commit | 9d90d7e5f6e01ef7e85aff0f7c68fccbcd9863e7 (patch) | |
tree | a12774f826ad94f23b568a9bf5c072a0e2ab602c /system | |
parent | e98c29db674d3e50b5cb1976cf294557bb1544e6 (diff) |
system/drbd-tools: Renamed to 'drbd'
The standalone kernel module package isn't needed any more,
so it's been removed. Therefore, we can simply call this
one 'drbd' instead of 'drbd-tools'
Diffstat (limited to 'system')
-rw-r--r-- | system/drbd-tools/README | 16 | ||||
-rw-r--r-- | system/drbd-tools/slack-desc | 19 | ||||
-rw-r--r-- | system/drbd/README | 7 | ||||
-rw-r--r-- | system/drbd/doinst.sh (renamed from system/drbd-tools/doinst.sh) | 0 | ||||
-rwxr-xr-x | system/drbd/drbd.SlackBuild (renamed from system/drbd-tools/drbd-tools.SlackBuild) | 28 | ||||
-rw-r--r-- | system/drbd/drbd.info (renamed from system/drbd-tools/drbd-tools.info) | 2 | ||||
-rw-r--r-- | system/drbd/slack-desc | 19 |
7 files changed, 45 insertions, 46 deletions
diff --git a/system/drbd-tools/README b/system/drbd-tools/README deleted file mode 100644 index c5923fcb46f6..000000000000 --- a/system/drbd-tools/README +++ /dev/null @@ -1,16 +0,0 @@ -drbd (Distributed Replicated Block Device) - -DRBD is a block device which is designed to build high availability -clusters. This is done by mirroring a whole block device via -(a dedicated) network. You could see it as a network RAID1. DRBD -takes over the data, writes it to the local disk and sends it to -the other host. On the other host, it takes it to the disk there. - -Starting with Linux 2.6.33, DRBD is officially integrated into the -vanilla Linux kernel source. Besides the kernel integration, DRBD -continues to be developed out of tree. - -This SlackBuild compiles the userland tools for working with DRBD. -If you have a 2.6.33 kernel or later then you will need to ensure -DRBD has been configured in your kernel. If you have an earlier -kernel, then you will need the drbd-kernel package. diff --git a/system/drbd-tools/slack-desc b/system/drbd-tools/slack-desc deleted file mode 100644 index 8dc9cd878e31..000000000000 --- a/system/drbd-tools/slack-desc +++ /dev/null @@ -1,19 +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 ':'. - - |-----handy-ruler------------------------------------------------------| -drbd-tools: drbd-tools (Userland Tools for Distributed Replicated Block Device) -drbd-tools: -drbd-tools: DRBD is a block device which is designed to build high availability -drbd-tools: clusters. This is done by mirroring a whole block device via -drbd-tools: (a dedicated) network. You could see it as a network RAID1. DRBD -drbd-tools: takes over the data, writes it to the local disk and sends it to -drbd-tools: the other host. On the other host, it takes it to the disk there. -drbd-tools: -drbd-tools: This package provides the userland tools for working with DRBD. -drbd-tools: -drbd-tools: Home: http://www.drbd.org diff --git a/system/drbd/README b/system/drbd/README new file mode 100644 index 000000000000..fe0d0959b788 --- /dev/null +++ b/system/drbd/README @@ -0,0 +1,7 @@ +drbd (Distributed Replicated Block Device) + +DRBD is a block device which is designed to build high availability +clusters. This is done by mirroring a whole block device via +(a dedicated) network. You could see it as a network RAID1. DRBD +takes over the data, writes it to the local disk and sends it to +the other host. On the other host, it takes it to the disk there. diff --git a/system/drbd-tools/doinst.sh b/system/drbd/doinst.sh index 5963b24bb250..5963b24bb250 100644 --- a/system/drbd-tools/doinst.sh +++ b/system/drbd/doinst.sh diff --git a/system/drbd-tools/drbd-tools.SlackBuild b/system/drbd/drbd.SlackBuild index 53d9707a73de..bca0efcbb7f0 100755 --- a/system/drbd-tools/drbd-tools.SlackBuild +++ b/system/drbd/drbd.SlackBuild @@ -6,13 +6,21 @@ # Written by Zordrak <sbo@tpa.me.uk> # Based on http://slackbuilds.org/template.SlackBuild -PRGNAM=drbd-tools -SRCNAM=drbd +PRGNAM=drbd VERSION=${VERSION:-8.3.7} -ARCH=${ARCH:-x86_64} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -27,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors @@ -34,9 +45,9 @@ set -e # Exit on most errors rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -71,10 +82,7 @@ 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 -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mv $PKG/etc/rc.d/drbd $PKG/etc/rc.d/rc.drbd.new mv $PKG/etc/drbd.conf $PKG/etc/drbd.conf.new diff --git a/system/drbd-tools/drbd-tools.info b/system/drbd/drbd.info index 6fc87cee02e1..ced8e9cc0443 100644 --- a/system/drbd-tools/drbd-tools.info +++ b/system/drbd/drbd.info @@ -1,4 +1,4 @@ -PRGNAM="drbd-tools" +PRGNAM="drbd" VERSION="8.3.7" HOMEPAGE="http://www.drbd.org" DOWNLOAD="http://oss.linbit.com/drbd/8.3/drbd-8.3.7.tar.gz" diff --git a/system/drbd/slack-desc b/system/drbd/slack-desc new file mode 100644 index 000000000000..d231e947a4ab --- /dev/null +++ b/system/drbd/slack-desc @@ -0,0 +1,19 @@ +# 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 ':'. + + |-----handy-ruler------------------------------------------------------| +drbd: drbd (Userland Tools for Distributed Replicated Block Device) +drbd: +drbd: DRBD is a block device which is designed to build high availability +drbd: clusters. This is done by mirroring a whole block device via +drbd: (a dedicated) network. You could see it as a network RAID1. DRBD +drbd: takes over the data, writes it to the local disk and sends it to +drbd: the other host. On the other host, it takes it to the disk there. +drbd: +drbd: Home: http://www.drbd.org +drbd: +drbd: |