blob: a09b19f30474becc9f376bebf63b3b8f86e2ae41 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.21-r2.ebuild,v 1.4 2010/05/14 19:59:58 josejx Exp $
EAPI="2"
inherit eutils autotools
DESCRIPTION="OBEX Server and Client"
HOMEPAGE="http://www.bluez.org/"
SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ~ppc x86"
IUSE="debug -eds -server"
RDEPEND="eds? ( gnome-extra/evolution-data-server )
net-wireless/bluez
>=dev-libs/openobex-1.4
dev-libs/glib:2
sys-apps/dbus
server? ( !app-mobilephone/obex-data-server )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}/${P}-fix_configure.patch"
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
$(use_with eds phonebook ebook) \
$(use_enable server)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README doc/*.txt
}
|