blob: f04f26369b2620aa9c856a580847b564bac885d6 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.47.ebuild,v 1.2 2012/09/23 03:43:04 blueness Exp $
EAPI="4"
DESCRIPTION="OBEX Server and Client"
HOMEPAGE="http://www.bluez.org/"
SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE="-eds nokia -server usb"
DOCS="AUTHORS ChangeLog README doc/*.txt"
RDEPEND="eds? ( gnome-extra/evolution-data-server )
!eds? ( dev-libs/libical )
>=net-wireless/bluez-4.99
>=dev-libs/openobex-1.4
>=dev-libs/glib-2.28:2
>=sys-apps/dbus-1.4
server? ( !app-mobilephone/obex-data-server )"
DEPEND="${RDEPEND}
virtual/pkgconfig
app-arch/xz-utils"
src_configure() {
econf \
--disable-debug \
--disable-silent-rules \
$(use_with eds phonebook ebook) \
$(use_enable nokia pcsuite) \
$(use_enable server) \
$(use_enable usb)
}
|