summaryrefslogtreecommitdiff
blob: f428cf94ffe6d07c83817f781e6d5f3141cad0f8 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit autotools

DESCRIPTION="A glib library to ease writing Telepathy clients in glib"
HOMEPAGE="http://telepathy.freedesktop.org/"
SRC_URI="http://projects.collabora.co.uk/~daf/release/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND=">=dev-libs/glib-2.0
	>=sys-apps/dbus-0.51"
RDEPEND="${RDEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	eautoreconf
}

src_install() {
	emake install DESTDIR="${D}" || die "emake failed"
	dodoc AUTHORS ChangeLog NEWS README TODO
}