| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.46.ebuild,v 1.6 2012/11/18 11:15:01 pacho Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 6 |
|
| 7 |
DESCRIPTION="OBEX Server and Client"
|
| 8 |
HOMEPAGE="http://www.bluez.org/"
|
| 9 |
SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
|
| 10 |
LICENSE="GPL-2"
|
| 11 |
SLOT="0"
|
| 12 |
KEYWORDS="amd64 arm ppc ppc64 x86"
|
| 13 |
IUSE="-eds nokia -server usb"
|
| 14 |
|
| 15 |
DOCS="AUTHORS ChangeLog README doc/*.txt"
|
| 16 |
|
| 17 |
RDEPEND="eds? ( gnome-extra/evolution-data-server )
|
| 18 |
!eds? ( dev-libs/libical )
|
| 19 |
>=net-wireless/bluez-4.99
|
| 20 |
>=dev-libs/openobex-1.4
|
| 21 |
>=dev-libs/glib-2.28:2
|
| 22 |
>=sys-apps/dbus-1.4
|
| 23 |
server? ( !app-mobilephone/obex-data-server )"
|
| 24 |
|
| 25 |
DEPEND="${RDEPEND}
|
| 26 |
virtual/pkgconfig
|
| 27 |
app-arch/xz-utils"
|
| 28 |
|
| 29 |
src_configure() {
|
| 30 |
econf \
|
| 31 |
--disable-debug \
|
| 32 |
$(use_with eds phonebook ebook) \
|
| 33 |
$(use_enable nokia pcsuite) \
|
| 34 |
$(use_enable server) \
|
| 35 |
$(use_enable usb)
|
| 36 |
}
|