# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils gnome2 IUSE="avahi dbus doc gnome sdl eds" DESCRIPTION="SIP and H.323 compliant client" HOMEPAGE="http://www.ekiga.org" SRC_URI="http://www.ekiga.org/downloads/beta2/sources/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="dbus? ( sys-apps/dbus ) dnssd? ( net-dns/avahi ) gnome? ( gnome-base/libgnome ) eds? ( gnome-extra/evolution-data-server ) >=x11-libs/gtk+-2 >=dev-libs/opal-2.1.3 >=dev-libs/pwlib-1.9.3" DEPEND="${RDEPEND}" src_compile() { local myconf if ! built_with_use dev-libs/pwlib ldap ; then die "Recompile dev-libs/pwlib with ldap use flag" fi # http://bugzilla.gnome.org/show_bug.cgi?id=327803 # $(use_enable dbus) # $(use_enable sdl) myconf="$(use_enable dnssd avahi) \ $(use_enable doc) \ $(use_enable gnome) \ $(use_enable gnome scrollkeeper)" econf ${myconf} || die "configure failed" emake || die "make failed" }