blob: 2fc10806dabe34f254221b95e672439057519a92 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# 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.21.4.ebuild,v 1.1 2007/12/18 12:51:27 coldwind Exp $
inherit gnome2 eutils versionator
MAJOR_V="$(get_version_component_range 1-2)"
DESCRIPTION="Empathy Telepathy client"
HOMEPAGE="http://live.gnome.org/Empathy"
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/${PN}/${MAJOR_V}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="python spell"
RDEPEND=">=dev-libs/dbus-glib-0.51
>=dev-libs/glib-2.14.0
>=x11-libs/gtk+-2.12.0
>=gnome-base/gconf-2
>=gnome-base/libglade-2
>=gnome-base/gnome-panel-2.10
>=net-libs/libtelepathy-0.3.1
>=net-libs/telepathy-glib-0.7.0
>=net-im/telepathy-mission-control-4.37
dev-libs/libxml2
>=gnome-base/gnome-vfs-2
>=gnome-extra/evolution-data-server-1.2
spell? (
app-text/aspell
app-text/iso-codes )
python? (
>=dev-lang/python-2.4.4-r5
>=dev-python/pygtk-2 )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.35.0
>=dev-util/pkgconfig-0.16"
DOCS="CONTRIBUTORS AUTHORS README"
pkg_setup() {
# NotHere is too broken to be included by default
G2CONF="$(use_enable spell aspell)
$(use_enable python)
--enable-voip=no
--enable-megaphone
--disable-nothere
--disable-gtk-doc"
}
src_install() {
gnome2_src_install
make_desktop_entry "${PN}" "Empathy" \
"/usr/share/icons/hicolor/scalable/apps/${PN}.svg" \
"Network;InstantMessaging"
}
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"
}
|