summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-cluster/pacemaker-gui')
-rw-r--r--sys-cluster/pacemaker-gui/ChangeLog7
-rw-r--r--sys-cluster/pacemaker-gui/pacemaker-gui-2.1.1.ebuild87
2 files changed, 5 insertions, 89 deletions
diff --git a/sys-cluster/pacemaker-gui/ChangeLog b/sys-cluster/pacemaker-gui/ChangeLog
index 6e1c596e850d..e90e5a356947 100644
--- a/sys-cluster/pacemaker-gui/ChangeLog
+++ b/sys-cluster/pacemaker-gui/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-cluster/pacemaker-gui
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pacemaker-gui/ChangeLog,v 1.8 2013/03/15 10:19:47 ultrabug Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pacemaker-gui/ChangeLog,v 1.9 2015/04/07 15:49:40 mgorny Exp $
+
+ 07 Apr 2015; Michał Górny <mgorny@gentoo.org> -pacemaker-gui-2.1.1.ebuild:
+ Drop old version due to unsatisfiable deps (old pacemaker version).
*pacemaker-gui-2.1.2 (15 Mar 2013)
diff --git a/sys-cluster/pacemaker-gui/pacemaker-gui-2.1.1.ebuild b/sys-cluster/pacemaker-gui/pacemaker-gui-2.1.1.ebuild
deleted file mode 100644
index 4db179943f60..000000000000
--- a/sys-cluster/pacemaker-gui/pacemaker-gui-2.1.1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pacemaker-gui/pacemaker-gui-2.1.1.ebuild,v 1.3 2012/11/23 11:05:57 ultrabug Exp $
-
-EAPI=4
-PYTHON_DEPEND="2"
-MY_P="pacemaker-mgmt-${PV}"
-MY_TREE="e4db9d3"
-
-inherit python base autotools
-
-DESCRIPTION="Pacemaker python GUI and management daemon"
-HOMEPAGE="http://hg.clusterlabs.org/pacemaker/pygui/"
-SRC_URI="https://github.com/gao-yan/pacemaker-mgmt/tarball/${MY_P} -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="-gtk heartbeat nls snmp static-libs"
-
-CDEPEND="
- app-arch/bzip2
- dev-libs/glib:2
- dev-libs/libxslt
- dev-libs/openssl
- net-libs/gnutls
- sys-apps/util-linux
- sys-cluster/cluster-glue
- ( >=sys-cluster/pacemaker-1.1 <sys-cluster/pacemaker-1.1.8 )
- heartbeat? ( sys-cluster/pacemaker[heartbeat] )
- gtk? (
- dev-python/pygtk
- )
- sys-libs/ncurses
- sys-libs/pam
- sys-libs/zlib"
-RDEPEND="${CDEPEND}
- sys-devel/libtool"
-DEPEND="${CDEPEND}
- gtk? ( dev-lang/swig )
- virtual/pkgconfig
- nls? (
- dev-util/intltool
- sys-devel/gettext
- )"
-
-S="${WORKDIR}/gao-yan-pacemaker-mgmt-${MY_TREE}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.1.1-doc.patch"
-)
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_prepare() {
- base_src_prepare
- eautoreconf
-}
-
-src_configure() {
- local myopts=""
- use heartbeat || myopts="--with-ais-support"
- econf $(use_with heartbeat heartbeat-support) \
- $(use_enable snmp) \
- $(use_enable nls) \
- $(use_enable gtk mgmt-client) \
- $(use_enable static-libs static) \
- ${myopts} \
- --disable-fatal-warnings
-}
-
-src_install() {
- base_src_install
- use static-libs || find "${D}"/usr/$(get_libdir)/ -name "*.la" -delete
- dodoc README doc/AUTHORS || die
-}
-
-pkg_postinst() {
- elog "IMPORTANT: To have the mgmtd daemon started with your cluster,"
- elog "you must add this directive in /etc/corosync/service.d/pacemaker :"
- elog ""
- elog "use_mgmtd: 1"
- elog ""
- elog "NB: To access the GUI, your user must be part of the 'haclient' group"
-}