From 833db4fe71219692ef9eeb4f991204d2aec668ba Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Sat, 17 Jul 2010 15:31:11 +0000 Subject: version bump (Portage version: 2.1.8.3/cvs/Linux x86_64) --- sys-cluster/corosync/ChangeLog | 7 +++- sys-cluster/corosync/corosync-1.2.6.ebuild | 56 ++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 1 deletion(-) create mode 100644 sys-cluster/corosync/corosync-1.2.6.ebuild (limited to 'sys-cluster/corosync') diff --git a/sys-cluster/corosync/ChangeLog b/sys-cluster/corosync/ChangeLog index b83d0584a9a2..2c6125973fc9 100644 --- a/sys-cluster/corosync/ChangeLog +++ b/sys-cluster/corosync/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-cluster/corosync # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.5 2010/06/29 08:33:51 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.6 2010/07/17 15:31:11 cardoe Exp $ + +*corosync-1.2.6 (17 Jul 2010) + + 17 Jul 2010; Doug Goldstein +corosync-1.2.6.ebuild: + version bump 29 Jun 2010; Guy Martin corosync-1.2.5.ebuild: Added ~hppa to KEYWORDS. diff --git a/sys-cluster/corosync/corosync-1.2.6.ebuild b/sys-cluster/corosync/corosync-1.2.6.ebuild new file mode 100644 index 000000000000..135461e19511 --- /dev/null +++ b/sys-cluster/corosync/corosync-1.2.6.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/corosync-1.2.6.ebuild,v 1.1 2010/07/17 15:31:11 cardoe Exp $ + +EAPI="3" + +inherit base autotools + +DESCRIPTION="OSI Certified implementation of a complete cluster engine" +HOMEPAGE="http://www.corosync.org/" +SRC_URI="ftp://ftp:${PN}.org@${PN}.org/downloads/${P}/${P}.tar.gz" + +LICENSE="BSD-2 public-domain" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="doc infiniband ssl" + +RDEPEND="!sys-cluster/heartbeat + ssl? ( dev-libs/nss ) + infiniband? ( + sys-infiniband/libibverbs + sys-infiniband/librdmacm + )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( sys-apps/groff )" + +PATCHES=( + "${FILESDIR}/${PN}-ldflags.patch" + "${FILESDIR}/${PN}-docs.patch" +) + +DOCS=( "README.recovery" "README.devmap" "SECURITY" "TODO" "AUTHORS" ) + +src_prepare() { + base_src_prepare + eautoreconf +} + +src_configure() { + # appends lib to localstatedir automatically + # FIXME: install both static and shared libs + econf \ + --localstatedir=/var \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable doc) \ + $(use_enable ssl nss) \ + $(use_enable infiniband rdma) +} + +src_install() { + base_src_install + newinitd "${FILESDIR}"/${PN}.initd ${PN} || die + + keepdir /var/lib/corosync +} -- cgit v1.2.3-65-gdbad