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 2F632138491 for ; Wed, 19 Oct 2016 22:02:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F4C9E0B41; Wed, 19 Oct 2016 22:02:37 +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 E8E35E0B41 for ; Wed, 19 Oct 2016 22:02:36 +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 0EB05341447 for ; Wed, 19 Oct 2016 22:02:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17E452EA for ; Wed, 19 Oct 2016 22:02:33 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1476914534.c447334b7b8f24fa766bd51a1159e9b9a25b337d.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gtk-vnc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gtk-vnc/gtk-vnc-0.6.0.ebuild X-VCS-Directories: net-libs/gtk-vnc/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: c447334b7b8f24fa766bd51a1159e9b9a25b337d X-VCS-Branch: master Date: Wed, 19 Oct 2016 22:02:33 +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: 5f42d213-685f-405e-840e-0bbd650b4f69 X-Archives-Hash: 29e3d576d767db34e1dd44f2db3d37c3 commit: c447334b7b8f24fa766bd51a1159e9b9a25b337d Author: Gilles Dartiguelongue gentoo org> AuthorDate: Wed Oct 19 21:08:46 2016 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Wed Oct 19 22:02:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c447334b net-libs/gtk-vnc: suffix all inner functions to avoid collisions with tools in PATH Gentoo-bug: 597196 Package-Manager: portage-2.3.1 net-libs/gtk-vnc/gtk-vnc-0.6.0.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-libs/gtk-vnc/gtk-vnc-0.6.0.ebuild b/net-libs/gtk-vnc/gtk-vnc-0.6.0.ebuild index 7e1f007..242b35d 100644 --- a/net-libs/gtk-vnc/gtk-vnc-0.6.0.ebuild +++ b/net-libs/gtk-vnc/gtk-vnc-0.6.0.ebuild @@ -98,7 +98,7 @@ src_configure() { --with-python } - configure() { + configure_normal() { ECONF_SOURCE="${S}" gnome2_src_configure \ ${myconf[@]} \ --with-gtk=${MULTIBUILD_VARIANT} \ @@ -113,7 +113,7 @@ src_configure() { local MULTIBUILD_VARIANTS compute_variants - multibuild_foreach_variant run_in_build_dir configure + multibuild_foreach_variant run_in_build_dir configure_normal } src_compile() { @@ -127,7 +127,7 @@ src_compile() { gtkvnc_la_DEPENDENCIES="${GTK2_BUILDDIR}/src/libgtk-vnc-1.0.la" } - compile() { + compile_normal() { gnome2_src_compile if [[ ${MULTIBUILD_ID} == 2.0 ]] && use python ; then @@ -138,7 +138,7 @@ src_compile() { local MULTIBUILD_VARIANTS compute_variants - multibuild_foreach_variant run_in_build_dir compile + multibuild_foreach_variant run_in_build_dir compile_normal } src_test() { @@ -158,7 +158,7 @@ src_install() { gtkvnc_la_DEPENDENCIES="${GTK2_BUILDDIR}/src/libgtk-vnc-1.0.la" } - install() { + install_normal() { gnome2_src_install if [[ ${MULTIBUILD_ID} == 2.0 ]] && use python ; then @@ -169,5 +169,5 @@ src_install() { local MULTIBUILD_VARIANTS compute_variants - multibuild_foreach_variant run_in_build_dir install + multibuild_foreach_variant run_in_build_dir install_normal }