diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-20 10:34:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-20 10:34:56 +0000 |
commit | 6e20bf55a2585c30f61174def5928e7b4e6cd56c (patch) | |
tree | 03b5bb7009e1c143d7435be17ee1dd3412ce8c42 /sys-libs/ncurses | |
parent | ia64/x86 stable wrt #218192 (diff) | |
download | gentoo-2-6e20bf55a2585c30f61174def5928e7b4e6cd56c.tar.gz gentoo-2-6e20bf55a2585c30f61174def5928e7b4e6cd56c.tar.bz2 gentoo-2-6e20bf55a2585c30f61174def5928e7b4e6cd56c.zip |
Drop USE="bootstrap build".
(Portage version: 2.2_pre5)
Diffstat (limited to 'sys-libs/ncurses')
-rw-r--r-- | sys-libs/ncurses/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/ncurses/ncurses-5.6-r2.ebuild | 11 |
2 files changed, 7 insertions, 9 deletions
diff --git a/sys-libs/ncurses/ChangeLog b/sys-libs/ncurses/ChangeLog index a82d2482c2ca..bf3c0d435673 100644 --- a/sys-libs/ncurses/ChangeLog +++ b/sys-libs/ncurses/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/ncurses # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ChangeLog,v 1.154 2008/01/02 07:09:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ChangeLog,v 1.155 2008/04/20 10:34:56 vapier Exp $ + + 20 Apr 2008; Mike Frysinger <vapier@gentoo.org> ncurses-5.6-r2.ebuild: + Drop USE="bootstrap build". 02 Jan 2008; Jeroen Roovers <jer@gentoo.org> ncurses-5.6-r2.ebuild: Stable for HPPA (bug #203575). diff --git a/sys-libs/ncurses/ncurses-5.6-r2.ebuild b/sys-libs/ncurses/ncurses-5.6-r2.ebuild index 1424fe0db155..8c1d46ce0c21 100644 --- a/sys-libs/ncurses/ncurses-5.6-r2.ebuild +++ b/sys-libs/ncurses/ncurses-5.6-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ncurses-5.6-r2.ebuild,v 1.9 2008/01/02 07:09:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ncurses-5.6-r2.ebuild,v 1.10 2008/04/20 10:34:56 vapier Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -15,7 +15,7 @@ SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz LICENSE="MIT" SLOT="5" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="bootstrap build debug doc gpm minimal nocxx profile trace unicode" +IUSE="debug doc gpm minimal nocxx profile trace unicode" DEPEND="gpm? ( sys-libs/gpm )" @@ -36,13 +36,8 @@ src_compile() { # Protect the user from themselves #115036 unset TERMINFO - # From version 5.3, ncurses also build c++ bindings, and as - # we do not have a c++ compiler during bootstrap, disable - # building it. We will rebuild ncurses after gcc's second - # build in bootstrap.sh. local myconf="" - ( use build || use bootstrap || use nocxx ) \ - && myconf="${myconf} --without-cxx --without-cxx-binding --without-ada" + use nocxx && myconf="${myconf} --without-cxx --without-cxx-binding --without-ada" # First we build the regular ncurses ... mkdir "${WORKDIR}"/narrowc |