# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol." HOMEPAGE="http://telepathy.freedesktop.org" SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="debug" RDEPEND=">=x11-libs/qt-core-4.2.1 >=x11-libs/qt-dbus-4.2.1 >=dev-lang/python-2.3" DEPEND="${RDEPEND} dev-libs/libxslt >=dev-util/pkgconfig-0.21" src_configure() { econf \ $(use_enable debug) } src_test() { if ! dbus-launch emake -j1 check; then die "Make check failed. See above for details." fi } src_install() { emake install DESTDIR="${D}" || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" }