blob: 9089c106c9662236f2a51b4a4c7d1ebc21466624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="A glib library to ease writing Telepathy clients in glib"
HOMEPAGE="http://telepathy.freedesktop.org/"
SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-libs/glib-2.0
>=sys-apps/dbus-0.51"
src_install() {
emake install DESTDIR="${D}" || die "emake failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
|