summaryrefslogtreecommitdiff
path: root/package/openais
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-03-04 17:52:39 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-03-04 17:52:39 +0100
commit7e2ccca948a513f888bdaad33c0f9aec571972f7 (patch)
tree2c9ac35b2e8c540797a66a36dfe40b864abf061c /package/openais
parentddb8c72a40d69c786062e3f92c9a2155726a6ea4 (diff)
fix pacemaker and pacemaker-mgmt build
Diffstat (limited to 'package/openais')
-rw-r--r--package/openais/Makefile36
-rw-r--r--package/openais/files/openais.init32
-rw-r--r--package/openais/patches/patch-Makefile_in11
3 files changed, 0 insertions, 79 deletions
diff --git a/package/openais/Makefile b/package/openais/Makefile
deleted file mode 100644
index 102a7d5f6..000000000
--- a/package/openais/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:= openais
-PKG_VERSION:= 1.1.4
-PKG_RELEASE:= 1
-PKG_MD5SUM:= e500ad3c49fdc45d8653f864e80ed82c
-PKG_DESCR:= AIS implementation
-PKG_SECTION:= ha
-PKG_BUILDDEP:= corosync
-PKG_DEPENDS:= corosync
-PKG_URL:= http://www.openais.org/
-PKG_SITES:= ftp://ftp:download@ftp.openais.org/downloads/openais-1.1.4/
-
-PKG_ARCH_DEPENDS:= !avr32
-
-include $(TOPDIR)/mk/package.mk
-
-$(eval $(call PKG_template,OPENAIS,openais,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-
-CONFIGURE_ENV+= ac_cv_func_fnmatch_works=yes
-
-openais-install:
- $(INSTALL_DIR) $(IDIR_OPENAIS)/usr/lib
- $(CP) $(WRKINST)/usr/lib/lib*.so* \
- $(IDIR_OPENAIS)/usr/lib
- $(INSTALL_DIR) $(IDIR_OPENAIS)/usr/sbin
- $(CP) $(WRKINST)/usr/sbin/* \
- $(IDIR_OPENAIS)/usr/sbin
- $(INSTALL_DIR) $(IDIR_OPENAIS)/usr/libexec
- $(CP) $(WRKINST)/usr/libexec/* \
- $(IDIR_OPENAIS)/usr/libexec
-
-include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/openais/files/openais.init b/package/openais/files/openais.init
deleted file mode 100644
index 25b2d8974..000000000
--- a/package/openais/files/openais.init
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#PKG openais
-#INIT 80
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${corosync:-NO}" = x"NO" && exit 0
- exec sh $0 start
- ;;
-start)
- [ -d /var/lib/corosync ] || mkdir -p /var/lib/corosync
- mkdir -p /var/lib/heartbeat/crm
- chown hacluster:haclient /var/lib/heartbeat/crm
- chmod 775 /var/lib/heartbeat/crm
- mkdir -p /var/lib/pengine
- chown hacluster /var/lib/pengine
- /usr/sbin/aisexec
- ;;
-stop)
- kill $(pgrep -f corosync)
- ;;
-restart)
- sh $0 stop
- sh $0 start
- ;;
-*)
- echo "usage: $0 {start | stop | restart}"
- ;;
-esac
-exit $?
diff --git a/package/openais/patches/patch-Makefile_in b/package/openais/patches/patch-Makefile_in
deleted file mode 100644
index ab7f536bb..000000000
--- a/package/openais/patches/patch-Makefile_in
+++ /dev/null
@@ -1,11 +0,0 @@
---- openais-1.1.4.orig/Makefile.in 2010-08-23 21:59:26.000000000 +0200
-+++ openais-1.1.4/Makefile.in 2011-06-25 22:04:16.722682552 +0200
-@@ -285,7 +285,7 @@ MAINTAINERCLEANFILES = Makefile.in acloc
- dist_doc_DATA = LICENSE README.amf AUTHORS
- corosysconfdir = ${COROSYSCONFDIR}
- corosysconf_DATA = conf/amf.conf.example
--SUBDIRS = include lib services test pkgconfig man init
-+SUBDIRS = include lib services test pkgconfig init
- RPMBUILDOPTS = --define "_sourcedir $(abs_builddir)" \
- --define "_specdir $(abs_builddir)" \
- --define "_builddir $(abs_builddir)" \