From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SFzd6-0001A1-O7 for garchives@archives.gentoo.org; Fri, 06 Apr 2012 03:14:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BC51E0ABB; Fri, 6 Apr 2012 03:14:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7AF75E0ABB for ; Fri, 6 Apr 2012 03:14:20 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A32BD1B401F for ; Fri, 6 Apr 2012 03:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 66D87E5403 for ; Fri, 6 Apr 2012 03:14:18 +0000 (UTC) From: "Alexandre Restovtsev" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Restovtsev" Message-ID: <1333681685.e2ffdf8f6730368b50739d26316ffeccaf70ab42.tetromino@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: net-im/telepathy-logger/ X-VCS-Repository: proj/gnome X-VCS-Files: net-im/telepathy-logger/telepathy-logger-0.4.0.ebuild X-VCS-Directories: net-im/telepathy-logger/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Restovtsev X-VCS-Revision: e2ffdf8f6730368b50739d26316ffeccaf70ab42 X-VCS-Branch: master Date: Fri, 6 Apr 2012 03:14:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 0b868436-3ef8-45ef-ab97-650cfabb0e43 X-Archives-Hash: 3b0184be030d826808188d8b3533a488 commit: e2ffdf8f6730368b50739d26316ffeccaf70ab42 Author: Alexandre Rostovtsev gentoo org> AuthorDate: Fri Apr 6 03:08:05 2012 +0000 Commit: Alexandre Restovtsev gmail com> CommitDate: Fri Apr 6 03:08:05 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3De2ffdf8f net-im/telepathy-logger: add 0.4.0 Needed for empathy-3.4.0.1 --- .../telepathy-logger/telepathy-logger-0.4.0.ebuild | 63 ++++++++++++++= ++++++ 1 files changed, 63 insertions(+), 0 deletions(-) diff --git a/net-im/telepathy-logger/telepathy-logger-0.4.0.ebuild b/net-= im/telepathy-logger/telepathy-logger-0.4.0.ebuild new file mode 100644 index 0000000..44e24c3 --- /dev/null +++ b/net-im/telepathy-logger/telepathy-logger-0.4.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D"4" +PYTHON_DEPEND=3D"2:2.5" + +inherit gnome2-utils python virtualx + +DESCRIPTION=3D"Telepathy Logger is a session daemon that should be activ= ated whenever telepathy is being used." +HOMEPAGE=3D"http://telepathy.freedesktop.org/wiki/Logger" +SRC_URI=3D"http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.bz2" + +LICENSE=3D"LGPL-2.1" +SLOT=3D"0" +KEYWORDS=3D"~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-linux" +IUSE=3D"doc +introspection" + +RDEPEND=3D">=3Ddev-libs/glib-2.25.11:2 + >=3Dsys-apps/dbus-1.1 + >=3Ddev-libs/dbus-glib-0.82 + >=3Dnet-libs/telepathy-glib-0.15.6[introspection?] + dev-libs/libxml2 + dev-libs/libxslt + dev-db/sqlite:3 + introspection? ( >=3Ddev-libs/gobject-introspection-0.9.6 ) +" +DEPEND=3D"${RDEPEND} + >=3Ddev-util/intltool-0.35 + doc? ( >=3Ddev-util/gtk-doc-1.10 ) +" + +DOCS=3D(AUTHORS ChangeLog NEWS README) + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + python_convert_shebangs -r 2 . +} + +src_configure() { + econf \ + $(use_enable doc gtk-doc) \ + $(use_enable introspection) \ + --enable-debug \ + --enable-public-extensions \ + --disable-coding-style-checks \ + --disable-Werror \ + --disable-static +} + +src_test() { + gnome2_environment_reset + Xemake check || die "make check failed" +} + +src_install() { + default + find "${D}" -name "*.la" -delete || die "la files removal failed" +}