diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2008-01-24 14:43:57 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2008-01-24 14:43:57 +0000 |
commit | bc167cb5c1d0d6dd3896db1533db131263736536 (patch) | |
tree | 5213696696f23a3782ef6982b95456b2d6c3d46a /net-im/telepathy-mission-control | |
parent | Remove old (diff) | |
download | gentoo-2-bc167cb5c1d0d6dd3896db1533db131263736536.tar.gz gentoo-2-bc167cb5c1d0d6dd3896db1533db131263736536.tar.bz2 gentoo-2-bc167cb5c1d0d6dd3896db1533db131263736536.zip |
Version bump and remove old.
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-im/telepathy-mission-control')
-rw-r--r-- | net-im/telepathy-mission-control/ChangeLog | 10 | ||||
-rw-r--r-- | net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.51-r1 | 3 | ||||
-rw-r--r-- | net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.57 | 3 | ||||
-rw-r--r-- | net-im/telepathy-mission-control/files/telepathy-mission-control-4.51-fix-segfault.patch | 29 | ||||
-rw-r--r-- | net-im/telepathy-mission-control/telepathy-mission-control-4.57.ebuild (renamed from net-im/telepathy-mission-control/telepathy-mission-control-4.51-r1.ebuild) | 12 |
5 files changed, 15 insertions, 42 deletions
diff --git a/net-im/telepathy-mission-control/ChangeLog b/net-im/telepathy-mission-control/ChangeLog index f9e154e7b2d7..0b7b21fb7afb 100644 --- a/net-im/telepathy-mission-control/ChangeLog +++ b/net-im/telepathy-mission-control/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-im/telepathy-mission-control # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.11 2008/01/16 22:08:49 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.12 2008/01/24 14:43:56 coldwind Exp $ + +*telepathy-mission-control-4.57 (24 Jan 2008) + + 24 Jan 2008; Santiago M. Mola <coldwind@gentoo.org> + -files/telepathy-mission-control-4.51-fix-segfault.patch, + -telepathy-mission-control-4.51-r1.ebuild, + +telepathy-mission-control-4.57.ebuild: + Version bump and remove old. *telepathy-mission-control-4.55 (16 Jan 2008) diff --git a/net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.51-r1 b/net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.51-r1 deleted file mode 100644 index 1b36e6a1ad9b..000000000000 --- a/net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.51-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7ca18503a7a64ddedf735659820142bf telepathy-mission-control-4.51.tar.gz 584321 -RMD160 7bf42c11f89a940426e23a636fd2d04964636070 telepathy-mission-control-4.51.tar.gz 584321 -SHA256 974d2cbece40307dd569378940d13cc3c57abdb3f5a1f0407da2512a3cd2b604 telepathy-mission-control-4.51.tar.gz 584321 diff --git a/net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.57 b/net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.57 new file mode 100644 index 000000000000..9aa06a6b5b46 --- /dev/null +++ b/net-im/telepathy-mission-control/files/digest-telepathy-mission-control-4.57 @@ -0,0 +1,3 @@ +MD5 9a6d9e0085ca6184e12f0f59b03c22cd telepathy-mission-control-4.57.tar.gz 586552 +RMD160 89daef3c551fc343ca3d4dd56750e3a365cbdb61 telepathy-mission-control-4.57.tar.gz 586552 +SHA256 ea0f53654c34da2a0b710f1a37d434c5b4f011df64dedf8e6e0d0fe19d67230d telepathy-mission-control-4.57.tar.gz 586552 diff --git a/net-im/telepathy-mission-control/files/telepathy-mission-control-4.51-fix-segfault.patch b/net-im/telepathy-mission-control/files/telepathy-mission-control-4.51-fix-segfault.patch deleted file mode 100644 index ab4e62a1f56b..000000000000 --- a/net-im/telepathy-mission-control/files/telepathy-mission-control-4.51-fix-segfault.patch +++ /dev/null @@ -1,29 +0,0 @@ -http://sourceforge.net/tracker/index.php?func=detail&aid=1849202&group_id=190214&atid=932444 ---- src/mcd-connection.c.orig 2007-12-29 16:16:33.000000000 +0100 -+++ src/mcd-connection.c 2007-12-29 16:18:41.000000000 +0100 -@@ -662,6 +662,7 @@ - pending_channel_free (McdPendingChannel *pc) - { - g_object_unref (pc->channel); -+ g_free (pc->type); - g_free (pc); - } - -@@ -2186,7 +2187,7 @@ - pc = g_malloc (sizeof(McdPendingChannel)); - pc->handle = chan_handle; - pc->handle_type = chan_handle_type; -- pc->type = chan_type; -+ pc->type = g_strdup(chan_type); - pc->channel = channel; - priv->pending_channels = g_list_prepend (priv->pending_channels, pc); - -@@ -2234,7 +2235,7 @@ - pc = g_malloc (sizeof(McdPendingChannel)); - pc->handle = req->channel_handle; - pc->handle_type = req->channel_handle_type; -- pc->type = req->channel_type; -+ pc->type = g_strdup(req->channel_type); - pc->channel = channel; - priv->pending_channels = g_list_prepend (priv->pending_channels, pc); - diff --git a/net-im/telepathy-mission-control/telepathy-mission-control-4.51-r1.ebuild b/net-im/telepathy-mission-control/telepathy-mission-control-4.57.ebuild index 412c77e812f8..591b0dfd232e 100644 --- a/net-im/telepathy-mission-control/telepathy-mission-control-4.51-r1.ebuild +++ b/net-im/telepathy-mission-control/telepathy-mission-control-4.57.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-4.51-r1.ebuild,v 1.1 2007/12/29 15:29:06 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-4.57.ebuild,v 1.1 2008/01/24 14:43:56 coldwind Exp $ inherit eutils DESCRIPTION="Nokia's implementation of a Telepathy Mission Control" -HOMEPAGE="http://telepathy.freedesktop.org/wiki/Mission_Control" +HOMEPAGE="http://mission-control.sourceforge.net/" SRC_URI="mirror://sourceforge/mission-control/${P}.tar.gz" LICENSE="LGPL-2.1" @@ -23,12 +23,6 @@ DEPEND="${RDEPEND} dev-libs/libxslt doc? ( >=dev-util/gtk-doc-1.3 )" -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-fix-segfault.patch -} - src_compile() { econf $(use_enable doc gtk-doc) \ --enable-server \ |