blob: 886faf9ce0dded7602898340772bc8cfb83df576 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-2.26.2.ebuild,v 1.6 2010/02/19 19:33:27 armin76 Exp $
EAPI="2"
inherit eutils gnome2
DESCRIPTION="Telepathy client and library using GTK+"
HOMEPAGE="http://live.gnome.org/Empathy"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="applet doc python spell test"
# FIXME: libnotify & libcanberra hard deps
RDEPEND=">=dev-libs/glib-2.16.0
>=x11-libs/gtk+-2.14.0
>=gnome-base/gconf-2
>=gnome-base/libglade-2
>=dev-libs/dbus-glib-0.51
>=gnome-extra/evolution-data-server-1.2
>=net-libs/telepathy-glib-0.7.23
>=net-im/telepathy-mission-control-4.61
=net-im/telepathy-mission-control-4*
media-libs/libcanberra[gtk]
>=x11-libs/libnotify-0.4.4
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10
net-libs/telepathy-farsight
dev-libs/libxml2
applet? ( >=gnome-base/gnome-panel-2.10 )
spell? (
app-text/enchant
app-text/iso-codes )
python? (
>=dev-lang/python-2.4.4-r5
>=dev-python/pygtk-2 )"
DEPEND="${RDEPEND}
app-text/scrollkeeper
app-text/gnome-doc-utils
>=dev-util/intltool-0.35.0
>=dev-util/pkgconfig-0.16
test? ( >=dev-libs/check-0.9.4 )
dev-libs/libxslt
virtual/python
doc? ( >=dev-util/gtk-doc-1.3 )"
DOCS="CONTRIBUTORS AUTHORS ChangeLog NEWS README"
# FIXME: Tests are broken, upstream bug #576785
RESTRICT="test"
pkg_setup() {
G2CONF="${G2CONF}
--disable-static
$(use_enable debug)
$(use_enable spell)
$(use_enable python)
$(use_enable applet megaphone)
$(use_enable applet nothere)"
}
src_prepare() {
gnome2_src_prepare
# Remove hard enabled -Werror (see AM_MAINTAINER_MODE), bug 218687
sed -i "s:-Werror::g" configure || die "sed 1 failed"
# FIXME: report upstream their package is broken
# Fix intltoolize broken file, see upstream #577133
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed 2 failed"
}
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
emake check || die "emake check failed."
}
pkg_postinst() {
gnome2_pkg_postinst
echo
elog "Empathy needs telepathy's connection managers to use any IM protocol."
elog "You will 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"
elog "Link-local XMPP: net-irc/telepathy-salut"
echo
}
|