blob: 94a22dbfe299a786e98fb32c2bcb140a76a00088 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/ctdb/ctdb-1.0.88.ebuild,v 1.5 2010/05/04 14:27:17 tester Exp $
EAPI="2"
inherit autotools
DESCRIPTION="A cluster implementation of the TDB database used by Samba and other projects to store temporary data."
HOMEPAGE="http://ctdb.samba.org/"
SRC_URI="http://ctdb.samba.org/packages/redhat/RHEL5/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="dev-libs/popt"
RDEPEND="${DEPEND}"
src_prepare() {
AT_M4DIR="-I ${S}/lib/replace -I ${S}/lib/talloc -I ${S}/lib/tdb -I ${S}/lib/popt -I ${S}/lib/events"
autotools_run_tool autoheader ${AT_M4DIR} || die "running autoheader failed"
eautoconf ${AT_M4DIR}
epatch "${FILESDIR}"/${PN}-functions.patch
epatch "${FILESDIR}"/${PN}-50.samba_gentoo.patch
epatch "${FILESDIR}"/${PN}-41.httpd_gentoo.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc "${D}/usr/share/doc/ctdb/README.eventscripts"
rm -rf "${D}/usr/share/doc/ctdb"
dohtml web/* doc/*.html
newinitd "${FILESDIR}/${PN}.initd" ctdb || die "newinitd failed"
newconfd "${S}/config/ctdb.sysconfig" ctdb || die "newconfd failed"
}
|