fix(vim.eclass): Restore passing --with-tlib=curses to configure

Cross-compiling vim in our environment fails otherwise. The old version
of the eclass had this line but the new one does not. Re-add it to get
things working again. Should investigate this closer before the next
time the eclasses get synced up with Gentoo.
This commit is contained in:
Michael Marineau 2013-11-07 15:55:54 -08:00
parent cae3220e79
commit da8cc94aa9

View File

@ -475,6 +475,10 @@ vim_src_configure() {
myconf="${myconf} $(use_enable nls) $(use_enable acl)"
fi
# Note: If USE=gpm, then ncurses will still be required. See bug #93970
# for the reasons behind the USE flag change.
myconf="${myconf} --with-tlib=curses"
myconf="${myconf} --disable-selinux"
# Let Portage do the stripping. Some people like that.