diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-29 20:02:38 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-29 20:02:38 +0000 |
commit | c6f0feb4615fcb1167821b352b9abac134e270b8 (patch) | |
tree | 015f0b3704ec5c259ce1c125aabf50154ef958b4 /net-voip/telepathy-gabble | |
parent | Version bump (diff) | |
download | gentoo-2-c6f0feb4615fcb1167821b352b9abac134e270b8.tar.gz gentoo-2-c6f0feb4615fcb1167821b352b9abac134e270b8.tar.bz2 gentoo-2-c6f0feb4615fcb1167821b352b9abac134e270b8.zip |
Version bump, drop old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-voip/telepathy-gabble')
-rw-r--r-- | net-voip/telepathy-gabble/ChangeLog | 8 | ||||
-rw-r--r-- | net-voip/telepathy-gabble/telepathy-gabble-0.18.3.ebuild (renamed from net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild) | 24 |
2 files changed, 18 insertions, 14 deletions
diff --git a/net-voip/telepathy-gabble/ChangeLog b/net-voip/telepathy-gabble/ChangeLog index 6cc7fe0ee9f6..5a7eeaf1e8ed 100644 --- a/net-voip/telepathy-gabble/ChangeLog +++ b/net-voip/telepathy-gabble/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-voip/telepathy-gabble # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.136 2014/05/04 12:12:21 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.137 2014/05/29 20:02:38 pacho Exp $ + +*telepathy-gabble-0.18.3 (29 May 2014) + + 29 May 2014; Pacho Ramos <pacho@gentoo.org> +telepathy-gabble-0.18.3.ebuild, + -telepathy-gabble-0.16.7.ebuild: + Version bump, drop old 04 May 2014; Pacho Ramos <pacho@gentoo.org> telepathy-gabble-0.18.2.ebuild: x86 stable, bug 508862 diff --git a/net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild b/net-voip/telepathy-gabble/telepathy-gabble-0.18.3.ebuild index a32a3d4ce914..50e135e56104 100644 --- a/net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild +++ b/net-voip/telepathy-gabble/telepathy-gabble-0.18.3.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild,v 1.6 2014/02/22 22:35:52 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.18.3.ebuild,v 1.1 2014/05/29 20:02:38 pacho Exp $ EAPI="5" +GCONF_DEBUG="no" PYTHON_COMPAT=( python2_{6,7} ) -inherit eutils python-any-r1 +inherit gnome2 eutils python-any-r1 DESCRIPTION="A Jabber/XMPP connection manager, with handling of single and multi user chats and voice calls" HOMEPAGE="http://telepathy.freedesktop.org" @@ -13,19 +14,20 @@ SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux" -IUSE="gnutls +jingle test" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux" +IUSE="gnutls +jingle plugins test" # Prevent false positives due nested configure QA_CONFIGURE_OPTIONS=".*" # FIXME: missing sasl-2 for tests ? (automagic) # missing libiphb for wocky ? +# x11-libs/gtksourceview:3.0 needed by telepathy-gabble-xmpp-console, bug #495184 RDEPEND=" - >=dev-libs/glib-2.30:2 + >=dev-libs/glib-2.32:2 >=sys-apps/dbus-1.1.0 >=dev-libs/dbus-glib-0.82 - >=net-libs/telepathy-glib-0.18 + >=net-libs/telepathy-glib-0.19.9 dev-db/sqlite:3 dev-libs/libxml2 @@ -35,6 +37,7 @@ RDEPEND=" jingle? ( || ( net-libs/libsoup:2.4[ssl] >=net-libs/libsoup-2.33.1 ) >=net-libs/libnice-0.0.11 ) + plugins? ( x11-libs/gtksourceview:3.0[introspection] ) !<net-im/telepathy-mission-control-5.5.0 " @@ -52,14 +55,14 @@ pkg_setup() { } src_configure() { - econf \ + gnome2_src_configure \ --disable-coding-style-checks \ --disable-static \ --disable-Werror \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ --enable-file-transfer \ $(use_enable jingle voip) \ $(use_enable jingle google-relay) \ + $(use_enable plugins) \ --with-tls=$(usex gnutls gnutls openssl) } @@ -67,8 +70,3 @@ src_test() { # Twisted tests fail, upstream bug #30565 emake -C tests check-TESTS } - -src_install() { - default - prune_libtool_files -} |