blob: 1cd5fdafdf21a09f598d025c4eda810c1b7a3315 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.9.ebuild,v 1.1 2009/08/25 02:22:39 tester Exp $
EAPI="2"
DESCRIPTION="Farsight connection manager for the Telepathy framework"
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 ~x86"
IUSE="python"
RDEPEND=">=dev-libs/glib-2.16
>=sys-apps/dbus-0.60
>=dev-libs/dbus-glib-0.60
>=net-libs/telepathy-glib-0.7.34
>=net-libs/farsight2-0.0.14
python? (
>=dev-python/pygobject-2.12.0
>=dev-python/gst-python-0.10.10 )"
DEPEND="${RDEPEND}"
src_configure() {
econf $(use_enable python)
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc NEWS ChangeLog
}
|