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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 67A5F15852A for ; Wed, 28 Aug 2024 04:33:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80CEBE2A67; Wed, 28 Aug 2024 04:33:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65FA2E2A67 for ; Wed, 28 Aug 2024 04:33:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83EA0340C7B for ; Wed, 28 Aug 2024 04:33:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDCD914D1 for ; Wed, 28 Aug 2024 04:33:35 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1724819598.836c1411aaee2daf8eed3ba65a17e8c96f269728.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gvim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/gvim/gvim-9999.ebuild X-VCS-Directories: app-editors/gvim/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 836c1411aaee2daf8eed3ba65a17e8c96f269728 X-VCS-Branch: master Date: Wed, 28 Aug 2024 04:33:35 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8f906b1f-0d90-42fe-ac4c-ce3e116dae44 X-Archives-Hash: 4b51543acea0ad7daa75cd5bc5a355ce commit: 836c1411aaee2daf8eed3ba65a17e8c96f269728 Author: Eli Schwartz gentoo org> AuthorDate: Wed Aug 28 03:33:41 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Wed Aug 28 04:33:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=836c1411 app-editors/gvim: sync more details with vim ebuild Signed-off-by: Eli Schwartz gentoo.org> app-editors/gvim/gvim-9999.ebuild | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/app-editors/gvim/gvim-9999.ebuild b/app-editors/gvim/gvim-9999.ebuild index 44b852c8973c..b9e03f4a2866 100644 --- a/app-editors/gvim/gvim-9999.ebuild +++ b/app-editors/gvim/gvim-9999.ebuild @@ -68,7 +68,8 @@ RDEPEND=" tcl? ( dev-lang/tcl:0= ) " DEPEND="${RDEPEND} - x11-base/xorg-proto" + x11-base/xorg-proto +" # configure runs the Lua interpreter BDEPEND=" dev-build/autoconf @@ -191,9 +192,15 @@ src_configure() { fi done + local myconf=( + --with-modified-by="Gentoo-${PVR} (RIP Bram)" + --with-vim-name=gvim + --with-x + ) + use debug && append-flags "-DDEBUG" - local myconf=( + myconf+=( --with-features=huge --disable-gpm --with-gnome=no @@ -251,11 +258,7 @@ src_configure() { vim_cv_toupper_broken=no fi - econf \ - --with-modified-by="Gentoo-${PVR} (RIP Bram)" \ - --with-vim-name=gvim \ - --with-x \ - "${myconf[@]}" + econf "${myconf[@]}" } src_compile() {