blob: d7beafe09d3def6f7c521b442809a78d25184f20 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-0.12.ebuild,v 1.1 2007/08/26 19:12:30 tester Exp $
inherit gnome2
DESCRIPTION="Empathy Telepathy client"
HOMEPAGE="http://live.gnome.org/Empathy"
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="spell python"
RDEPEND=">=dev-libs/dbus-glib-0.51
>=dev-libs/glib-2.12
dev-libs/libxml2
>=gnome-base/gconf-2
>=gnome-base/libglade-2
gnome-base/libgnomeui
>=net-libs/libtelepathy-0.0.51
>=net-im/telepathy-mission-control-4.33
>=x11-libs/gtk+-2.10
>=gnome-base/gnome-vfs-2
>=gnome-extra/evolution-data-server-1.2
spell? ( app-text/aspell )
python? ( >=dev-lang/python-2.4.4-r5 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12.0"
DOCS="CONTRIBUTORS AUTHORS README"
pkg_setup() {
G2CONF="$(use_enable spell aspell) $(use_enable python)"
}
pkg_postinst() {
gnome2_pkg_postinst
echo
elog "Empathy needs telepathy's connection managers to use any protocol."
elog "You'll need to install connection managers yourself."
elog "MSN: net-voip/telepathy-butterfly"
elog "Jabber and Gtalk: net-voip/telepathy-gabble"
elog "IRC: net-irc/telepathy-idle"
}
|