From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3BCB51385E6 for ; Tue, 22 Jan 2013 05:26:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1EAC1E0586; Tue, 22 Jan 2013 05:26:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFB04E0586 for ; Tue, 22 Jan 2013 05:25:59 +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 C6AC733DB5B for ; Tue, 22 Jan 2013 05:25:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 41A43E4073 for ; Tue, 22 Jan 2013 05:25:56 +0000 (UTC) From: "Alexandre Rostovtsev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" Message-ID: <1358832320.172c57a004628c8ef4ca5e8a39f202aa145a8c67.tetromino@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: net-libs/gnome-online-accounts/ X-VCS-Repository: proj/gnome X-VCS-Files: net-libs/gnome-online-accounts/gnome-online-accounts-9999.ebuild X-VCS-Directories: net-libs/gnome-online-accounts/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: 172c57a004628c8ef4ca5e8a39f202aa145a8c67 X-VCS-Branch: master Date: Tue, 22 Jan 2013 05:25:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: adfff8de-73a8-4ba2-8a69-8f92fcda74ce X-Archives-Hash: 04e6e5758f33ca6df856bb4dce9b4c58 commit: 172c57a004628c8ef4ca5e8a39f202aa145a8c67 Author: Alexandre Rostovtsev gentoo org> AuthorDate: Tue Jan 22 05:25:20 2013 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Tue Jan 22 05:25:20 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=172c57a0 net-libs/gnome-online-accounts: sync with gx86 --- .../gnome-online-accounts-9999.ebuild | 25 ++++++++++--------- 1 files changed, 13 insertions(+), 12 deletions(-) diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-9999.ebuild b/net-libs/gnome-online-accounts/gnome-online-accounts-9999.ebuild index 3552cf4..463bf84 100644 --- a/net-libs/gnome-online-accounts/gnome-online-accounts-9999.ebuild +++ b/net-libs/gnome-online-accounts/gnome-online-accounts-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -13,18 +13,20 @@ fi DESCRIPTION="GNOME framework for accessing online accounts" HOMEPAGE="https://live.gnome.org/GnomeOnlineAccounts" -LICENSE="LGPL-2" +LICENSE="LGPL-2+" SLOT="0" IUSE="gnome +introspection kerberos" if [[ ${PV} = 9999 ]]; then IUSE="${IUSE} doc" KEYWORDS="" else - KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" fi # pango used in goaeditablelabel # libsoup used in goaoauthprovider +# goa kerberos provider is incompatible with app-crypt/heimdal, see +# https://bugzilla.gnome.org/show_bug.cgi?id=692250 RDEPEND=" >=dev-libs/glib-2.32:2 app-crypt/libsecret @@ -41,7 +43,7 @@ RDEPEND=" introspection? ( >=dev-libs/gobject-introspection-0.6.2 ) kerberos? ( app-crypt/gcr - virtual/krb5 ) + app-crypt/mit-krb5 ) " # goa-daemon can launch gnome-control-center PDEPEND="gnome? ( >=gnome-base/gnome-control-center-3.2[gnome-online-accounts(+)] )" @@ -60,12 +62,11 @@ fi src_configure() { # TODO: Give users a way to set the G/Y!/FB/Twitter/Windows Live secrets - G2CONF="${G2CONF} - --disable-static - --enable-documentation - --enable-exchange - --enable-facebook - --enable-windows-live - $(use_enable kerberos)" - gnome2_src_configure + gnome2_src_configure \ + --disable-static \ + --enable-documentation \ + --enable-exchange \ + --enable-facebook \ + --enable-windows-live \ + $(use_enable kerberos) }