blob: ace57ea81fbbed43bda08112a092439e542ab76e (
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
46
47
48
49
50
51
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.8.0.ebuild,v 1.1 2011/07/25 11:25:28 pacho Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
inherit python
DESCRIPTION="An account manager and channel dispatcher for the Telepathy framework."
HOMEPAGE="http://telepathy.freedesktop.org/wiki/Mission%20Control"
SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gnome-keyring test"
RDEPEND=">=net-libs/telepathy-glib-0.13.14
>=dev-libs/dbus-glib-0.82
gnome-keyring? ( || ( gnome-base/libgnome-keyring <gnome-base/gnome-keyring-2.29.4 ) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-libs/libxslt
test? ( dev-python/twisted-words )"
# Tests are broken, see upstream bug #29334
# upstream doesn't want it enabled everywhere
RESTRICT="test"
pkg_setup() {
python_set_active_version 2
}
src_prepare() {
python_convert_shebangs -r 2 .
}
src_configure() {
# creds is not available and no support mcd-plugins for now
econf --disable-static\
--disable-mcd-plugins \
$(use_enable gnome-keyring)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog || die
find "${ED}" -name '*.la' -exec rm -f '{}' + || die
}
|