From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B763E138331 for ; Sun, 2 Oct 2016 12:38:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DD3EE0BDC; Sun, 2 Oct 2016 12:37:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7EC6CE0BDC for ; Sun, 2 Oct 2016 12:37:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42174340CD7 for ; Sun, 2 Oct 2016 12:37:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E1B124AF for ; Sun, 2 Oct 2016 12:37:41 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1475411828.bb3ec1eeaf3f0b43a187a76f78d670d6ab65b985.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/remmina/remmina-9999.ebuild X-VCS-Directories: net-misc/remmina/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: bb3ec1eeaf3f0b43a187a76f78d670d6ab65b985 X-VCS-Branch: master Date: Sun, 2 Oct 2016 12:37:41 +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: 828acf79-152e-4fec-b32c-4eb4543bf23f X-Archives-Hash: 467c83e4cd0c53631bacfe93ed3c7950 commit: bb3ec1eeaf3f0b43a187a76f78d670d6ab65b985 Author: Pacho Ramos gentoo org> AuthorDate: Sun Oct 2 11:43:07 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 2 12:37:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3ec1ee net-misc/remmina: Use zeroconf instead of avahi USE flag (#477620) Package-Manager: portage-2.3.1 net-misc/remmina/remmina-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net-misc/remmina/remmina-9999.ebuild b/net-misc/remmina/remmina-9999.ebuild index d95355d..30f8974 100644 --- a/net-misc/remmina/remmina-9999.ebuild +++ b/net-misc/remmina/remmina-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -22,7 +22,7 @@ HOMEPAGE="http://remmina.sourceforge.net/" LICENSE="GPL-2" SLOT="0" -IUSE="ayatana avahi crypt debug freerdp gnome-keyring nls ssh telepathy vte" +IUSE="ayatana crypt debug freerdp gnome-keyring nls ssh telepathy vte zeroconf" RDEPEND=" x11-libs/gtk+:3 @@ -30,7 +30,6 @@ RDEPEND=" >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-themes/gnome-icon-theme - avahi? ( net-dns/avahi[gtk3] ) ayatana? ( dev-libs/libappindicator ) crypt? ( dev-libs/libgcrypt:0 ) freerdp? ( @@ -41,6 +40,7 @@ RDEPEND=" ssh? ( net-libs/libssh[sftp] ) telepathy? ( net-libs/telepathy-glib ) vte? ( x11-libs/vte:2.90 ) + zeroconf? ( net-dns/avahi[gtk3] ) " DEPEND="${RDEPEND} dev-util/intltool @@ -59,7 +59,6 @@ S="${WORKDIR}/Remmina-${PV}" src_configure() { local mycmakeargs=( $(cmake-utils_use_with ayatana APPINDICATOR) - $(cmake-utils_use_with avahi AVAHI) $(cmake-utils_use_with crypt GCRYPT) $(cmake-utils_use_with freerdp FREERDP) $(cmake-utils_use_with gnome-keyring GNOMEKEYRING) @@ -68,6 +67,7 @@ src_configure() { $(cmake-utils_use_with ssh LIBSSH) $(cmake-utils_use_with telepathy TELEPATHY) $(cmake-utils_use_with vte VTE) + $(cmake-utils_use_with zeroconf AVAHI) -DGTK_VERSION=3 -DHAVE_PTHREAD=ON )