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 1Qv1L7-00047F-Bj for garchives@archives.gentoo.org; Sun, 21 Aug 2011 06:17:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CA8C21C145; Sun, 21 Aug 2011 06:16:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 021E221C12F for ; Sun, 21 Aug 2011 06:16:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40FAA1B4054 for ; Sun, 21 Aug 2011 06:16:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7759C80057 for ; Sun, 21 Aug 2011 06:16:03 +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: Subject: [gentoo-commits] proj/gnome:gnome-next commit in: net-libs/farsight2/ X-VCS-Repository: proj/gnome X-VCS-Files: net-libs/farsight2/farsight2-0.0.29.ebuild X-VCS-Directories: net-libs/farsight2/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Restovtsev X-VCS-Revision: b036d8815cf2a81834be87e607dbdd3893cf0afe Date: Sun, 21 Aug 2011 06:16:03 +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: X-Archives-Hash: ca5fec286d532f3c6e1177b1f011bcaa commit: b036d8815cf2a81834be87e607dbdd3893cf0afe Author: Alexandre Rostovtsev gmail com> AuthorDate: Sun Aug 21 05:10:45 2011 +0000 Commit: Alexandre Restovtsev gmail com> CommitDate: Sun Aug 21 05:10:45 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3Db036d881 net-libs/farsight2: add 0.0.29 Add version 0.0.29; needed for telepathy-farstream, which in turn is needed for empathy-3.1.5. --- net-libs/farsight2/farsight2-0.0.29.ebuild | 70 ++++++++++++++++++++++= ++++++ 1 files changed, 70 insertions(+), 0 deletions(-) diff --git a/net-libs/farsight2/farsight2-0.0.29.ebuild b/net-libs/farsig= ht2/farsight2-0.0.29.ebuild new file mode 100644 index 0000000..490f790 --- /dev/null +++ b/net-libs/farsight2/farsight2-0.0.29.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/farsight2/farsight2-0.0.26.e= build,v 1.4 2011/07/31 16:28:29 armin76 Exp $ + +EAPI=3D"3" +PYTHON_DEPEND=3D"2" + +inherit python + +DESCRIPTION=3D"Farsight2 is an audio/video conferencing framework specif= ically designed for Instant Messengers." +HOMEPAGE=3D"http://farsight.freedesktop.org/" +SRC_URI=3D"http://farsight.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE=3D"LGPL-2.1" +KEYWORDS=3D"~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd6= 4-linux ~x86-linux" +IUSE=3D"python test msn upnp" +SLOT=3D"0" + +# Tests often fail due to races +RESTRICT=3D"test" + +COMMONDEPEND=3D">=3Dmedia-libs/gstreamer-0.10.33 + >=3Dmedia-libs/gst-plugins-base-0.10.33 + >=3Ddev-libs/glib-2.26:2 + >=3Dnet-libs/libnice-0.1.0[gstreamer] + python? ( + >=3Ddev-python/pygobject-2.16:2 + >=3Ddev-python/gst-python-0.10.10 ) + upnp? ( net-libs/gupnp-igd )" + +RDEPEND=3D"${COMMONDEPEND} + >=3Dmedia-libs/gst-plugins-good-0.10.17 + >=3Dmedia-libs/gst-plugins-bad-0.10.17 + msn? ( >=3Dmedia-plugins/gst-plugins-mimic-0.10.17 )" + +DEPEND=3D"${COMMONDEPEND} + test? ( media-plugins/gst-plugins-vorbis + media-plugins/gst-plugins-speex ) + dev-util/pkgconfig" + +pkg_setup() { + python_set_active_version 2 +} + +src_configure() { + plugins=3D"fsrtpconference,funnel,rtcpfilter,videoanyrate" + use msn && plugins=3D"${plugins},fsmsnconference" + econf --disable-static \ + $(use_enable python) \ + $(use_enable upnp gupnp) \ + --with-plugins=3D${plugins} +} + +src_install() { + emake install DESTDIR=3D"${D}" || die "emake install failed" + dodoc AUTHORS README ChangeLog + + # Remove .la files since static libs are no longer being installed + find "${D}" -name '*.la' -exec rm -f '{}' + || die +} + +src_test() { + # FIXME: do an out-of-tree build for tests if USE=3D-msn + if ! use msn; then + elog "Tests disabled without msn use flag" + return + fi + + emake -j1 check +}