diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-06-01 21:52:50 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-06-01 21:52:50 +0000 |
commit | 0c96c152c34634df1450216ce7bfd6e98587570f (patch) | |
tree | b0809aa55ccc456249a3884ccbd12399498c90e3 /net-libs/telepathy-glib | |
parent | version bump (bug #248362) (diff) | |
download | gentoo-2-0c96c152c34634df1450216ce7bfd6e98587570f.tar.gz gentoo-2-0c96c152c34634df1450216ce7bfd6e98587570f.tar.bz2 gentoo-2-0c96c152c34634df1450216ce7bfd6e98587570f.zip |
Version bump. Updated to telepathy-spec 0.17.25. With blessing from peper.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/telepathy-glib')
-rw-r--r-- | net-libs/telepathy-glib/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/telepathy-glib/telepathy-glib-0.7.31.ebuild | 42 |
2 files changed, 49 insertions, 1 deletions
diff --git a/net-libs/telepathy-glib/ChangeLog b/net-libs/telepathy-glib/ChangeLog index e66fd458c735..3aa56a9a50a9 100644 --- a/net-libs/telepathy-glib/ChangeLog +++ b/net-libs/telepathy-glib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/telepathy-glib # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.28 2009/04/09 22:46:16 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.29 2009/06/01 21:52:50 eva Exp $ + +*telepathy-glib-0.7.31 (01 Jun 2009) + + 01 Jun 2009; Gilles Dartiguelongue <eva@gentoo.org> + +telepathy-glib-0.7.31.ebuild: + Version bump. Updated to telepathy-spec 0.17.25. *telepathy-glib-0.7.29 (09 Apr 2009) diff --git a/net-libs/telepathy-glib/telepathy-glib-0.7.31.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.7.31.ebuild new file mode 100644 index 000000000000..6d7e0dd32134 --- /dev/null +++ b/net-libs/telepathy-glib/telepathy-glib-0.7.31.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.7.31.ebuild,v 1.1 2009/06/01 21:52:50 eva Exp $ + +DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol." +HOMEPAGE="http://telepathy.freedesktop.org" +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" +IUSE="debug doc" + +RDEPEND=">=dev-libs/glib-2.16 + >=dev-libs/dbus-glib-0.73 + >=dev-lang/python-2.3" + +DEPEND="${RDEPEND} + dev-libs/libxslt + >=dev-util/pkgconfig-0.21 + doc? ( >=dev-util/gtk-doc-1.10 )" + +src_compile() { + econf \ + $(use_enable doc gtk-doc) \ + $(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 ChangeLog NEWS README || die "dodoc failed" +} |