summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexys Jacob <ultrabug@gentoo.org>2013-02-14 13:38:53 +0000
committerAlexys Jacob <ultrabug@gentoo.org>2013-02-14 13:38:53 +0000
commit9f8bf5143899a91957e83a0e676ea03857d8b6a7 (patch)
tree2dc6a4b6166a06fbadf2e8bb7d8ad7c4be2ec9f7 /sys-cluster/crmsh
parentAdjust qt dep to what the cmake file really wants (diff)
downloadgentoo-2-9f8bf5143899a91957e83a0e676ea03857d8b6a7.tar.gz
gentoo-2-9f8bf5143899a91957e83a0e676ea03857d8b6a7.tar.bz2
gentoo-2-9f8bf5143899a91957e83a0e676ea03857d8b6a7.zip
Version bump
(Portage version: 2.1.11.51/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Diffstat (limited to 'sys-cluster/crmsh')
-rw-r--r--sys-cluster/crmsh/ChangeLog7
-rw-r--r--sys-cluster/crmsh/crmsh-1.2.5.ebuild31
2 files changed, 37 insertions, 1 deletions
diff --git a/sys-cluster/crmsh/ChangeLog b/sys-cluster/crmsh/ChangeLog
index cfb67aee9143..3313216fa601 100644
--- a/sys-cluster/crmsh/ChangeLog
+++ b/sys-cluster/crmsh/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-cluster/crmsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/ChangeLog,v 1.3 2013/01/18 09:15:37 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/ChangeLog,v 1.4 2013/02/14 13:38:53 ultrabug Exp $
+
+*crmsh-1.2.5 (14 Feb 2013)
+
+ 14 Feb 2013; Ultrabug <ultrabug@gentoo.org> +crmsh-1.2.5.ebuild:
+ Version bump
*crmsh-1.2.4 (18 Jan 2013)
diff --git a/sys-cluster/crmsh/crmsh-1.2.5.ebuild b/sys-cluster/crmsh/crmsh-1.2.5.ebuild
new file mode 100644
index 000000000000..93790df1db6f
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-1.2.5.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/crmsh-1.2.5.ebuild,v 1.1 2013/02/14 13:38:53 ultrabug Exp $
+
+EAPI=4
+
+inherit autotools-utils
+
+MY_TREE="51379136d692"
+
+DESCRIPTION="Pacemaker command line interface for management and configuration"
+HOMEPAGE="https://savannah.nongnu.org/projects/crmsh/"
+SRC_URI="http://hg.savannah.gnu.org/hgweb/crmsh/archive/${MY_TREE}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE=""
+
+DEPEND="
+ >=sys-cluster/pacemaker-1.1.8
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${MY_TREE}"
+
+src_prepare() {
+ sed -e 's@CRM_CACHE_DIR=${localstatedir}/cache/crm@CRM_CACHE_DIR=${localstatedir}/crmsh@g' \
+ -i configure.ac || die
+ eautoreconf
+}