diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-28 21:38:07 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-28 21:38:07 +0000 |
commit | 7874232a2f505b3c4b6086275e9615a5f26cc519 (patch) | |
tree | e63992b85c5e8e4a9dc2e1cdd2f483dfc50a4b90 /net-voip/telepathy-gabble | |
parent | remove mask on nullmailer-1.04 (diff) | |
download | gentoo-2-7874232a2f505b3c4b6086275e9615a5f26cc519.tar.gz gentoo-2-7874232a2f505b3c4b6086275e9615a5f26cc519.tar.bz2 gentoo-2-7874232a2f505b3c4b6086275e9615a5f26cc519.zip |
bump to 0.7.2
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-voip/telepathy-gabble')
-rw-r--r-- | net-voip/telepathy-gabble/ChangeLog | 10 | ||||
-rw-r--r-- | net-voip/telepathy-gabble/telepathy-gabble-0.7.2.ebuild | 41 |
2 files changed, 49 insertions, 2 deletions
diff --git a/net-voip/telepathy-gabble/ChangeLog b/net-voip/telepathy-gabble/ChangeLog index 8a186f4bfd52..97cbe24322f3 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-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.30 2007/11/22 15:27:00 peper Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.31 2008/02/28 21:38:07 eva Exp $ + +*telepathy-gabble-0.7.2 (28 Feb 2008) + + 28 Feb 2008; Gilles Dartiguelongue <eva@gentoo.org> + +telepathy-gabble-0.7.2.ebuild: + bump to 0.7.2 *telepathy-gabble-0.7.1 (22 Nov 2007) diff --git a/net-voip/telepathy-gabble/telepathy-gabble-0.7.2.ebuild b/net-voip/telepathy-gabble/telepathy-gabble-0.7.2.ebuild new file mode 100644 index 000000000000..4bd9abb71840 --- /dev/null +++ b/net-voip/telepathy-gabble/telepathy-gabble-0.7.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2008 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.7.2.ebuild,v 1.1 2008/02/28 21:38:07 eva Exp $ + +DESCRIPTION="A Jabber/XMPP connection manager, this handles single and multi user chats and voice calls." +HOMEPAGE="http://telepathy.freedesktop.org" +SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND=">=dev-libs/glib-2.4 + >=dev-libs/dbus-glib-0.72 + >=net-libs/telepathy-glib-0.5.14 + dev-lang/python + >=net-libs/loudmouth-1.1.1" + +DEPEND="${RDEPEND} + dev-libs/libxslt" + +src_compile() { + econf \ + $(use_enable debug) \ + $(use_enable debug backtrace) \ + $(use_enable debug handle-leak-debug) \ + || die "econf failed" + emake || die "emake failed" +} + +src_test() { + if ! dbus-launch emake -j1 check; then + die "Make check failed. See above for details." + fi +} + +src_install() { + emake install DESTDIR="${D}" || die "emake install failed" + dodoc AUTHORS NEWS ChangeLog +} |