diff options
Diffstat (limited to 'net-im/empathy/empathy-0.14.ebuild')
-rw-r--r-- | net-im/empathy/empathy-0.14.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net-im/empathy/empathy-0.14.ebuild b/net-im/empathy/empathy-0.14.ebuild new file mode 100644 index 000000000000..b7c953ce334e --- /dev/null +++ b/net-im/empathy/empathy-0.14.ebuild @@ -0,0 +1,56 @@ +# 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.14.ebuild,v 1.1 2007/10/01 13:49:19 tester Exp $ + +inherit gnome2 eutils + +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="python spell" + +RDEPEND=">=dev-libs/dbus-glib-0.51 + >=dev-libs/glib-2.14.0 + dev-libs/libxml2 + >=gnome-base/gconf-2 + >=gnome-base/libglade-2 + >=net-libs/libtelepathy-0.0.57 + >=net-im/telepathy-mission-control-4.33 + >=x11-libs/gtk+-2.12.0 + >=gnome-base/gnome-vfs-2 + >=gnome-extra/evolution-data-server-1.2 + gnome-base/gnome-panel + spell? ( app-text/aspell ) + python? ( >=dev-lang/python-2.4.4-r5 )" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0 + dev-util/gtk-doc" + +DOCS="CONTRIBUTORS AUTHORS README" + +pkg_setup() { + # NotHere is too broken to be included by default + G2CONF="$(use_enable spell aspell) $(use_enable python) + --enable-megaphone --disable-nothere" +} + +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" +} |