blob: 472b6aa24c7c0483e3a5aa1f043d5de9f9dc77d9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-salut/telepathy-salut-0.3.10.ebuild,v 1.2 2010/01/05 04:34:20 josejx Exp $
EAPI="2"
inherit base
DESCRIPTION="A link-local XMPP connection manager for Telepathy"
HOMEPAGE="http://telepathy.freedesktop.org/wiki/Components"
SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ssl test"
# FIXME: Automagic useless libasyncns check ?
RDEPEND="dev-libs/libxml2
>=dev-libs/glib-2.16
>=sys-apps/dbus-1.1.0
>=dev-libs/dbus-glib-0.61
>=net-libs/telepathy-glib-0.7.36
>=net-dns/avahi-0.6.22
net-libs/libsoup:2.4
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
test? (
net-libs/libgsasl
app-text/xmldiff
>=dev-libs/check-0.9.4
dev-python/twisted-words )
dev-libs/libxslt
>=dev-lang/python-2.4"
src_configure() {
econf $(use_enable ssl) --docdir=/usr/share/doc/${PF}
# too much changes required: $(use_enable test avahi-tests)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
}
|