blob: 89f8a45eea99e6c4bc46e2d1732d2deb5abe068e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Jabber connection manager for Telepathy"
HOMEPAGE="http://telepathy.freedesktop.org"
SRC_URI="http://projects.collabora.co.uk/~daf/release/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="dev-libs/libgcrypt
dev-libs/libgpg-error
net-libs/gnutls
>=net-libs/loudmouth-1.0
>=sys-apps/dbus-0.61"
src_install() {
emake install DESTDIR="${D}" || die "emake failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
pkg_postinst() {
einfo "To run gabble use:"
einfo "$ GABBLE_PERSIST=1 telepathy-gabble"
einfo "For debugging Gabble, set the LM_DEBUG=net environment variable."
}
|