summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Crête <tester@gentoo.org>2009-04-09 22:46:16 +0000
committerOlivier Crête <tester@gentoo.org>2009-04-09 22:46:16 +0000
commit80257c53e82d6793bbff1719efde3c36774786ae (patch)
tree404f0e29e590fa979c8a19d377dd0fea63434601 /net-libs/telepathy-glib
parentBump to 2.6.0-r2. Include more patches from bug #214265 and from ubuntu. (diff)
downloadgentoo-2-80257c53e82d6793bbff1719efde3c36774786ae.tar.gz
gentoo-2-80257c53e82d6793bbff1719efde3c36774786ae.tar.bz2
gentoo-2-80257c53e82d6793bbff1719efde3c36774786ae.zip
Version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'net-libs/telepathy-glib')
-rw-r--r--net-libs/telepathy-glib/ChangeLog8
-rw-r--r--net-libs/telepathy-glib/telepathy-glib-0.7.29.ebuild42
2 files changed, 49 insertions, 1 deletions
diff --git a/net-libs/telepathy-glib/ChangeLog b/net-libs/telepathy-glib/ChangeLog
index a9728bd3a597..e66fd458c735 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.27 2009/04/04 17:50:19 solar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.28 2009/04/09 22:46:16 tester Exp $
+
+*telepathy-glib-0.7.29 (09 Apr 2009)
+
+ 09 Apr 2009; Olivier Crête <tester@gentoo.org>
+ +telepathy-glib-0.7.29.ebuild:
+ Version bump
04 Apr 2009; <solar@gentoo.org> telepathy-glib-0.7.25.ebuild:
- Keyword ~arm
diff --git a/net-libs/telepathy-glib/telepathy-glib-0.7.29.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.7.29.ebuild
new file mode 100644
index 000000000000..7db4704936e7
--- /dev/null
+++ b/net-libs/telepathy-glib/telepathy-glib-0.7.29.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.29.ebuild,v 1.1 2009/04/09 22:46:16 tester 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="~arm ~alpha ~amd64 ~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
+}