commit: 836c1411aaee2daf8eed3ba65a17e8c96f269728
Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 03:33:41 2024 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> 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 <eschwartz <AT> 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() {