blob: 5cc5895a53c4d00ea66c6d606e6b3081ddd8d66a (
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
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2011 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.15.ebuild,v 1.2 2011/02/19 11:24:38 pacho Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit python
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 ~ia64 ~ppc ~sparc ~x86"
IUSE="python"
RDEPEND=">=dev-libs/glib-2.16:2
>=sys-apps/dbus-0.60
>=dev-libs/dbus-glib-0.60
>=net-libs/telepathy-glib-0.7.34
>=net-libs/farsight2-0.0.17
python? (
>=dev-python/pygobject-2.12.0
>=dev-python/gst-python-0.10.10 )"
DEPEND="${RDEPEND}"
pkg_setup() {
python_set_active_version 2
}
src_prepare() {
python_convert_shebangs -r 2 .
}
src_configure() {
econf $(use_enable python)
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc NEWS ChangeLog || die
}
|