diff options
author | 2011-08-03 08:06:08 +0000 | |
---|---|---|
committer | 2011-08-03 08:06:08 +0000 | |
commit | 5b5dbfb894696c963d98ab5bd1f6a2b8a29a5d79 (patch) | |
tree | db72d1b1c905520ee2390c05f040046a40f979b3 /sys-cluster/corosync | |
parent | Whitespace fix. (diff) | |
download | gentoo-2-5b5dbfb894696c963d98ab5bd1f6a2b8a29a5d79.tar.gz gentoo-2-5b5dbfb894696c963d98ab5bd1f6a2b8a29a5d79.tar.bz2 gentoo-2-5b5dbfb894696c963d98ab5bd1f6a2b8a29a5d79.zip |
Version bump.
(Portage version: 2.1.10.9/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.3.ebuild | 58 |
2 files changed, 64 insertions, 1 deletions
diff --git a/sys-cluster/corosync/ChangeLog b/sys-cluster/corosync/ChangeLog index 1fb87eee77f0..cdf7cc4677c4 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.16 2011/05/10 13:24:24 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.17 2011/08/03 08:06:08 ultrabug Exp $ + +*corosync-1.3.3 (03 Aug 2011) + + 03 Aug 2011; Ultrabug <ultrabug@gentoo.org> +corosync-1.3.3.ebuild: + Version bump. 10 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> corosync-1.3.1.ebuild: Cleanup and use eapi4. diff --git a/sys-cluster/corosync/corosync-1.3.3.ebuild b/sys-cluster/corosync/corosync-1.3.3.ebuild new file mode 100644 index 000000000000..e1475c4be1f5 --- /dev/null +++ b/sys-cluster/corosync/corosync-1.3.3.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.3.ebuild,v 1.1 2011/08/03 08:06:08 ultrabug Exp $ + +EAPI=4 + +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 just shared libs --disable-static does not work + econf \ + --localstatedir=/var \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable doc) \ + $(use_enable ssl nss) \ + $(use_enable infiniband rdma) +} + +src_install() { + default + newinitd "${FILESDIR}"/${PN}.initd ${PN} + + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotate ${PN} + + keepdir /var/lib/corosync +} |