blob: 42da6843487120bed81d9ed6c5d38a57f506c136 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.0-r2.ebuild,v 1.1 2010/04/03 19:56:24 dev-zero Exp $
EAPI="2"
inherit autotools python
DESCRIPTION="Samba tdb"
HOMEPAGE="http://tdb.samba.org/"
SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="python static-libs tools tdbtest"
RDEPEND=""
DEPEND="python? ( dev-lang/python )
!<net-fs/samba-libs-3.4
!<net-fs/samba-3.3"
src_prepare() {
eautoconf -Ilibreplace
sed -i \
-e 's:$(SHLD_FLAGS) :$(SHLD_FLAGS) $(LDFLAGS) :' \
Makefile.in || die "sed failed"
}
src_configure() {
econf \
--sysconfdir=/etc/samba \
--localstatedir=/var \
$(use_enable python)
}
src_compile() {
# TODO:
# - don't build static-libs in case of USE=-static-libs
# we create the directories first to avoid workaround parallel build problem
emake dirs || die "emake dirs failed"
emake shared-build || die "emake shared-build failed"
if use tdbtest ; then
emake bin/tdbtest || die "emake tdbtest failed"
fi
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
# installs a necessary symlink
dolib.so sharedbuild/lib/libtdb.so
dodoc docs/README
use static-libs || rm -f "${D}"/usr/lib*/*.a
use tools || rm -rf "${D}/usr/bin"
use tdbtest && dobin bin/tdbtest
use python && python_need_rebuild
}
src_test() {
# the default src_test runs 'make test' and 'make check', letting
# the tests fail occasionally (reason: unknown)
emake check || die "emake check failed"
}
|