# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit eutils gnome2 DESCRIPTION="SyncEvolution synchronizes personal information management (PIM) data via various protocols" HOMEPAGE="http://syncevolution.org/" SRC_URI="http://downloads.syncevolution.org/syncevolution/sources/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="akonadi bluetooth curl dbus eds gnome gtk2 gtk3 keyring kwallet libnotify soup sqlite webdav xmlrpc" RDEPEND=" >=dev-libs/boost-1.35 >=dev-libs/glib-2.16:2 dev-util/cppunit dev-python/twisted-web akonadi? ( kde-base/kdepim-common-libs ) curl? ( net-misc/curl ) dbus? ( >=sys-apps/dbus-1.2 ) keyring? ( >=gnome-base/gnome-keyring-2.20 ) libnotify? ( x11-libs/libnotify ) soup? ( >=net-libs/libsoup-2.4:2.4 ) bluetooth? ( >=net-wireless/bluez-4 >=dev-libs/openobex-1.5 gnome? ( >=net-wireless/gnome-bluetooth-2.28 ) ) eds? ( >=gnome-extra/evolution-data-server-1.2 >=dev-libs/libical-0.43 ) gtk2? ( >=x11-libs/gtk+-2.18:2 dev-libs/libunique:1 ) gtk3? ( x11-libs/gtk+:3 ) xmlrpc? ( >=dev-libs/xmlrpc-c-1.06 >=dev-db/sqlite-3.7.2 ) " DEPEND="${RDEPEND} dev-python/docutils virtual/pkgconfig >=dev-util/intltool-0.37.1" REQUIRED_USE=" xmlrpc? ( sqlite ) gnome? ( bluetooth ) gtk2? ( dbus ) gtk3? ( dbus ) " DOCS="AUTHORS Doxyfile ChangeLog" src_configure() { ENABLE_GUI="" if use gtk2; then ENABLE_GUI="--enable-gui=gtk --enable-gtk=2" fi if use gtk3; then ENABLE_GUI="--enable-gui=gtk --enable-gtk=3" fi ## further flags: # $(use_enable activesync) requires libeasclient from evolution activesync subdir # $(use_enable doc) doc? ( app-doc/doxygen ) fails due to missing makefile to generate docbook html, dev-libs/libxslt # $(use_enable mlite) only for meego # $(use_enable dbus-service-pim) depends on libfolks (not in portage) gnome2_src_configure \ ${ENABLE_GUI} \ --with-rst2man=/usr/bin/rst2man.py \ --with-rst2html=/usr/bin/rst2html.py \ $(use_enable akonadi) \ $(use_enable bluetooth) \ $(use_enable bluetooth pbap) \ $(use_enable curl libcurl) \ $(use_enable dbus dbus-service) \ $(use_enable eds ebook) \ $(use_enable eds ecal) \ $(use_enable gnome gnome-bluetooth-panel-plugin) \ $(use_enable keyring gnome-keyring) \ $(use_enable kwallet) \ $(use_enable libnotify notify) \ $(use_enable sqlite) \ $(use_enable soup libsoup) \ $(use_enable webdav dav) \ $(use_enable xmlrpc) \ $(use_enable xmlrpc sqlite) \ $(use_enable xmlrpc file) }