blob: 080ce84f09f17b12dd969e6191256f75578db753 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.8.ebuild,v 1.3 2009/11/04 11:47:20 patrick Exp $
EAPI="2"
inherit confutils eutils autotools
DESCRIPTION="Samba tevent library"
HOMEPAGE="http://tevent.samba.org/"
SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz"
LICENSE="GPL-3"
IUSE=""
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
DEPEND="sys-libs/talloc"
RDEPEND="${DEPEND}"
src_prepare() {
eautoconf -Ilibreplace
}
src_configure() {
econf \
--sysconfdir=/etc/samba \
--localstatedir=/var \
--enable-largefile \
|| die "econf failed"
}
src_compile() {
emake dirs || die "emake dirs failed"
emake showflags || die "emake showflags failed"
emake shared-build || die "emake shared-build failed"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dolib.a sharedbuild/lib/libtevent.a
dolib.so sharedbuild/lib/libtevent.so
}
|