summaryrefslogtreecommitdiff
path: root/pcr/ha-glue/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/ha-glue/PKGBUILD')
-rw-r--r--pcr/ha-glue/PKGBUILD106
1 files changed, 0 insertions, 106 deletions
diff --git a/pcr/ha-glue/PKGBUILD b/pcr/ha-glue/PKGBUILD
deleted file mode 100644
index 06385e9cf..000000000
--- a/pcr/ha-glue/PKGBUILD
+++ /dev/null
@@ -1,106 +0,0 @@
-# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>
-
-pkgname=ha-glue
-_pkgname=${pkgname:3}
-pkgver=1.0.11
-pkgrel=5
-pkgdesc='A set of libraries, tools and utilities suitable for the Heartbeat/Pacemaker cluster stack'
-arch=(
- i686
- x86_64
- mips64el
-)
-url=http://linux-ha.org/wiki/Cluster_${_pkgname^}
-license=(
- GPL2
- LGPL2.1
-)
-depends=(
- curl
- glib2
- libaio
- libesmtp
- libxml2
- net-snmp
- python
- util-linux
-)
-optdepends=(
- #lynx
- net-tools
- openssh
- #valgrind
- #w3m
-)
-makedepends=(
- help2man
- libxslt
- #lynx
- net-tools
- openssh
- #valgrind
- #w3m
-)
-options=!libtool
-install=$pkgname.install
-source=(
- http://hg.linux-ha.org/$_pkgname/archive/$_pkgname-$pkgver.tar.bz2
- ha-log.service
-)
-sha512sums=(
- 35ac8ac555c39f24c11e3a768cc50eba051fe617edf4cdc0429dac73f45a472f144cfe6ec5faff575606f2b04ff76a2f732556d848b61410c2683d93ba928413
- 9252472a6d7a1bbad765c63becdec4064d882b1eb98abdf27833a6e06d8750f06663b2460d32a4c72d04f10a7480ef0a2093b8a18b4d1fc62a989cde54ee056a
-)
-
-prepare() {
- export _CLUSTER_USER=hacluster
- export _CLUSTER_GROUP=haclient
- _DGID=666
- _DUID=666
-
- #verify the cluster user and group
- if ! getent group $_CLUSTER_GROUP >/dev/null;then
- msg 'BEFORE COMPILE THIS SOFTWARE YOU MUST CREATE A CLUSTER GROUP, EXECUTE AS ROOT:'
- echo -e "# groupadd -r -g $_DGID $_CLUSTER_GROUP\n"
- _EXITCODE=1
- fi
- if ! getent passwd $_CLUSTER_USER >/dev/null;then
- msg 'BEFORE COMPILE THIS SOFTWARE YOU MUST CREATE A CLUSTER USER, EXECUTE AS ROOT:'
- echo -e "# useradd -r -g $_CLUSTER_GROUP -u $_DUID -d /var/lib/heartbeat/cores/$_CLUSTER_USER -s /sbin/nologin -c \"cluster user\" $_CLUSTER_USER\n"
- _EXITCODE=1
- fi
- if [[ $_EXITCODE -eq 1 ]] ;then
- return 1
- fi
-
- cd $srcdir/Reusable-Cluster-Components-$_pkgname--$_pkgname-$pkgver
- sed -i 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|' configure.ac
-}
-
-build() {
- cd $srcdir/Reusable-Cluster-Components-$_pkgname--$_pkgname-$pkgver
- setarch $CARCH ./autogen.sh
- setarch $CARCH ./configure --prefix=/usr\
- --enable-fatal-warnings=no\
- --enable-static=no\
- --libdir=/usr/lib\
- --localstatedir=/var\
- --sysconfdir=/etc\
- --with-daemon-group=haclient\
- --with-daemon-user=hacluster
- setarch $CARCH make
-}
-
-package() {
- cd $srcdir/Reusable-Cluster-Components-$_pkgname--$_pkgname-$pkgver
- setarch $CARCH make DESTDIR=$pkgdir install
-
- install -d $pkgdir/usr/lib/systemd/system
- install -Dm644 $srcdir/ha-log.service $pkgdir/usr/lib/systemd/system
-
- msg 'AFTER COMPILE THIS SOFTWARE YOU MUST DELETE A CLUSTER USER AND A CLUSTER GROUP, EXECUTE AS ROOT:'
- echo -e "# userdel $_CLUSTER_USER"
- echo -e "# groupdel $_CLUSTER_GROUP"
-}
-
-# vim:set ts=2 sw=2 et: