Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/corosync: ChangeLog corosync-1.2.8.ebuild corosync-1.2.7.ebuild
Date: Thu, 02 Sep 2010 19:24:29
Message-Id: 20100902192420.9C41520051@flycatcher.gentoo.org
1 xarthisius 10/09/02 19:24:20
2
3 Modified: ChangeLog
4 Added: corosync-1.2.8.ebuild
5 Removed: corosync-1.2.7.ebuild
6 Log:
7 Version bump. Thanks to Ultrabug for testing. Drop old.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 sys-cluster/corosync/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 2 Aug 2010 05:28:57 -0000 1.7
24 +++ ChangeLog 2 Sep 2010 19:24:20 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-cluster/corosync
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.7 2010/08/02 05:28:57 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.8 2010/09/02 19:24:20 xarthisius Exp $
30 +
31 +*corosync-1.2.8 (02 Sep 2010)
32 +
33 + 02 Sep 2010; Kacper Kowalik <xarthisius@g.o>
34 + -corosync-1.2.7.ebuild, +corosync-1.2.8.ebuild:
35 + Version bump. Thanks to Ultrabug for testing. Drop old.
36
37 *corosync-1.2.7 (02 Aug 2010)
38
39
40
41
42 1.1 sys-cluster/corosync/corosync-1.2.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/corosync-1.2.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/corosync-1.2.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: corosync-1.2.8.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/corosync-1.2.8.ebuild,v 1.1 2010/09/02 19:24:20 xarthisius Exp $
52
53 EAPI=3
54
55 inherit base autotools
56
57 DESCRIPTION="OSI Certified implementation of a complete cluster engine"
58 HOMEPAGE="http://www.corosync.org/"
59 SRC_URI="ftp://ftp:${PN}.org@${PN}.org/downloads/${P}/${P}.tar.gz"
60
61 LICENSE="BSD-2 public-domain"
62 SLOT="0"
63 KEYWORDS="~amd64 ~hppa ~x86"
64 IUSE="doc infiniband ssl"
65
66 RDEPEND="!sys-cluster/heartbeat
67 ssl? ( dev-libs/nss )
68 infiniband? (
69 sys-infiniband/libibverbs
70 sys-infiniband/librdmacm
71 )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 doc? ( sys-apps/groff )"
75
76 PATCHES=(
77 "${FILESDIR}/${PN}-ldflags.patch"
78 "${FILESDIR}/${PN}-docs.patch"
79 )
80
81 DOCS=( "README.recovery" "README.devmap" "SECURITY" "TODO" "AUTHORS" )
82
83 src_prepare() {
84 base_src_prepare
85 eautoreconf
86 }
87
88 src_configure() {
89 # appends lib to localstatedir automatically
90 # FIXME: install both static and shared libs
91 econf \
92 --localstatedir=/var \
93 --docdir=/usr/share/doc/${PF} \
94 $(use_enable doc) \
95 $(use_enable ssl nss) \
96 $(use_enable infiniband rdma)
97 }
98
99 src_install() {
100 base_src_install
101 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
102
103 keepdir /var/lib/corosync
104 }