diff options
author | 2011-04-29 09:53:24 +0000 | |
---|---|---|
committer | 2011-04-29 09:53:24 +0000 | |
commit | f632d2b7eb01c497168020502d66606439516f02 (patch) | |
tree | b68ed9e0f2a259a1cf84be049801c9b0b5e76c18 /sys-cluster/corosync | |
parent | x86 stable wrt bug #362319 (diff) | |
download | gentoo-2-f632d2b7eb01c497168020502d66606439516f02.tar.gz gentoo-2-f632d2b7eb01c497168020502d66606439516f02.tar.bz2 gentoo-2-f632d2b7eb01c497168020502d66606439516f02.zip |
Version bump, wrt #364999.
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'sys-cluster/corosync')
-rw-r--r-- | sys-cluster/corosync/ChangeLog | 7 | ||||
-rw-r--r-- | sys-cluster/corosync/corosync-1.3.1.ebuild | 58 |
2 files changed, 64 insertions, 1 deletions
diff --git a/sys-cluster/corosync/ChangeLog b/sys-cluster/corosync/ChangeLog index 7711c1573100..1f3d91026b02 100644 --- a/sys-cluster/corosync/ChangeLog +++ b/sys-cluster/corosync/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-cluster/corosync # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.14 2011/02/21 08:35:58 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.15 2011/04/29 09:53:24 ultrabug Exp $ + +*corosync-1.3.1 (29 Apr 2011) + + 29 Apr 2011; Ultrabug <ultrabug@gentoo.org> +corosync-1.3.1.ebuild: + Version bump, wrt #364999. 21 Feb 2011; Jeroen Roovers <jer@gentoo.org> corosync-1.3.0.ebuild: Stable for HPPA (bug #354461). diff --git a/sys-cluster/corosync/corosync-1.3.1.ebuild b/sys-cluster/corosync/corosync-1.3.1.ebuild new file mode 100644 index 000000000000..311788b7c5dc --- /dev/null +++ b/sys-cluster/corosync/corosync-1.3.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/corosync-1.3.1.ebuild,v 1.1 2011/04/29 09:53:24 ultrabug 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}-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 + + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotate ${PN} || die + + keepdir /var/lib/corosync +} |