diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-08 08:20:12 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-08 08:20:12 +0000 |
commit | 0a45bc6c8156ce7f082f320a7f657f25230363b4 (patch) | |
tree | cf0c9e1d5c0d9b917f8328b59846697d01fee30e /eclass | |
parent | ~ppc keyword, bug #460772 (diff) | |
download | historical-0a45bc6c8156ce7f082f320a7f657f25230363b4.tar.gz historical-0a45bc6c8156ce7f082f320a7f657f25230363b4.tar.bz2 historical-0a45bc6c8156ce7f082f320a7f657f25230363b4.zip |
Fix build with sys-libs/ncurses[tinfo] (bug #457564, patch by Ben Longbons).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vim.eclass | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index ccfc38f35823..4447f9ffde83 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.813 2013/05/05 20:22:25 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.814 2013/05/08 08:20:12 radhermit Exp $ + + 08 May 2013; Tim Harder <radhermit@gentoo.org> vim.eclass: + Fix build with sys-libs/ncurses[tinfo] (bug #457564, patch by Ben Longbons). 05 May 2013; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass: Support complete EAPI src_test(). diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 3139b432586c..247cc090c3c3 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.212 2013/04/24 01:49:40 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.213 2013/05/08 08:20:12 radhermit Exp $ # Authors: # Jim Ramsay <lack@gentoo.org> @@ -505,10 +505,6 @@ 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. |