diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-11-28 22:51:42 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-11-28 22:51:42 +0000 |
commit | 2b4b596dc628f16767a12ebebdcebe476b834d9a (patch) | |
tree | 49dd84d7f71aa8e68d60d49f28d1057aae9e0743 /net-im | |
parent | Mask USE due missing keywords, bug #492820 (diff) | |
download | gentoo-2-2b4b596dc628f16767a12ebebdcebe476b834d9a.tar.gz gentoo-2-2b4b596dc628f16767a12ebebdcebe476b834d9a.tar.bz2 gentoo-2-2b4b596dc628f16767a12ebebdcebe476b834d9a.zip |
Add support for Sip Exchange Protocol (#492346 by Maksim 'max_posedon' Melnikau)
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-im')
3 files changed, 38 insertions, 1 deletions
diff --git a/net-im/telepathy-connection-managers/ChangeLog b/net-im/telepathy-connection-managers/ChangeLog index edc76d63af0e..30b89845e854 100644 --- a/net-im/telepathy-connection-managers/ChangeLog +++ b/net-im/telepathy-connection-managers/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-im/telepathy-connection-managers # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-connection-managers/ChangeLog,v 1.15 2013/10/27 09:34:53 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-connection-managers/ChangeLog,v 1.16 2013/11/28 22:51:42 pacho Exp $ + +*telepathy-connection-managers-2-r2 (28 Nov 2013) + + 28 Nov 2013; Pacho Ramos <pacho@gentoo.org> + +telepathy-connection-managers-2-r2.ebuild, metadata.xml: + Add support for Sip Exchange Protocol (#492346 by Maksim 'max_posedon' + Melnikau) 27 Oct 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Voip herd is removed: http://article.gmane.org/gmane.linux.gentoo.devel/88434 diff --git a/net-im/telepathy-connection-managers/metadata.xml b/net-im/telepathy-connection-managers/metadata.xml index 3270c01bdaf6..b69f6034d1a6 100644 --- a/net-im/telepathy-connection-managers/metadata.xml +++ b/net-im/telepathy-connection-managers/metadata.xml @@ -8,5 +8,6 @@ <flag name='irc'>Enable Internet Relay Chat (IRC) support.</flag> <flag name='yahoo'>Enable Yahoo! messaging support.</flag> <flag name='jabber'>Enable XMPP protocol handler (this is also Google Talk).</flag> + <flag name='sipe'>Enable Sip Exchange Protocol.</flag> </use> </pkgmetadata> diff --git a/net-im/telepathy-connection-managers/telepathy-connection-managers-2-r2.ebuild b/net-im/telepathy-connection-managers/telepathy-connection-managers-2-r2.ebuild new file mode 100644 index 000000000000..0da3227c7f5e --- /dev/null +++ b/net-im/telepathy-connection-managers/telepathy-connection-managers-2-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-connection-managers/telepathy-connection-managers-2-r2.ebuild,v 1.1 2013/11/28 22:51:42 pacho Exp $ + +EAPI=5 + +DESCRIPTION="Meta-package for Telepathy Connection Managers" +HOMEPAGE="http://telepathy.freedesktop.org/" +SRC_URI="" +LICENSE="metapackage" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux" + +IUSE="msn +irc yahoo icq +jabber sip sipe zeroconf" + +DEPEND="" +# These version support the 0.24.0 Telepathy specification +# They work with Mission Control 5.14 +RDEPEND=" + msn? ( >=net-voip/telepathy-gabble-0.16.4 ) + jabber? ( >=net-voip/telepathy-gabble-0.16.4 ) + sip? ( >=net-voip/telepathy-rakia-0.7.4 ) + sipe? ( >=x11-plugins/pidgin-sipe-1.17.1[telepathy] ) + zeroconf? ( >=net-voip/telepathy-salut-0.8.1 ) + icq? ( >=net-voip/telepathy-haze-0.6.0 ) + yahoo? ( >=net-voip/telepathy-haze-0.6.0 ) + irc? ( >=net-irc/telepathy-idle-0.1.14 ) +" |