diff options
author | Alexandre Buisse <nattfodd@gentoo.org> | 2006-01-19 18:03:34 +0000 |
---|---|---|
committer | Alexandre Buisse <nattfodd@gentoo.org> | 2006-01-19 18:03:34 +0000 |
commit | c7a24e854d8f729c7a5684a0ae2bc35d45adeca1 (patch) | |
tree | 5063df7d22a6ba2a4d213e1f7db4385c1fe59e72 /dev-cpp/ice | |
parent | Add version 2.4 and Debian patchset for bug 119557. (diff) | |
download | gentoo-2-c7a24e854d8f729c7a5684a0ae2bc35d45adeca1.tar.gz gentoo-2-c7a24e854d8f729c7a5684a0ae2bc35d45adeca1.tar.bz2 gentoo-2-c7a24e854d8f729c7a5684a0ae2bc35d45adeca1.zip |
Fixed readline->ncurses move
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'dev-cpp/ice')
-rw-r--r-- | dev-cpp/ice/ChangeLog | 5 | ||||
-rw-r--r-- | dev-cpp/ice/Manifest | 2 | ||||
-rw-r--r-- | dev-cpp/ice/ice-3.0.0-r1.ebuild | 6 |
3 files changed, 8 insertions, 5 deletions
diff --git a/dev-cpp/ice/ChangeLog b/dev-cpp/ice/ChangeLog index fac29e953bae..8c28588b47d3 100644 --- a/dev-cpp/ice/ChangeLog +++ b/dev-cpp/ice/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/ice # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ice/ChangeLog,v 1.2 2006/01/19 17:50:03 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ice/ChangeLog,v 1.3 2006/01/19 18:03:34 nattfodd Exp $ + + 19 Jan 2006; Alexandre Buisse <nattfodd@gentoo.org> ice-3.0.0-r1.ebuild: + Fixed readline->ncurses USE flag move. 19 Jan 2006; Alexandre Buisse <nattfodd@gentoo.org> files/ice-3.0.0-makefile.patch, ice-3.0.0-r1.ebuild: diff --git a/dev-cpp/ice/Manifest b/dev-cpp/ice/Manifest index 4424cf823981..58329a084cd6 100644 --- a/dev-cpp/ice/Manifest +++ b/dev-cpp/ice/Manifest @@ -1,5 +1,5 @@ MD5 5017f9ac8e975640f2af08e7abb7122e ChangeLog 840 MD5 5643b69002aaa0bd00051022b1b087aa files/digest-ice-3.0.0-r1 62 MD5 32a346f9cd5aaec1b8e44ef52543fc4d files/ice-3.0.0-makefile.patch 1656 -MD5 18b348af0e09c47b9b615a0c4e376d80 ice-3.0.0-r1.ebuild 1469 +MD5 de7f039a6c2a9670deebefd8782ac7b2 ice-3.0.0-r1.ebuild 1467 MD5 fa56365fdfb0c6f7e71fe6bbae6e26b2 metadata.xml 1168 diff --git a/dev-cpp/ice/ice-3.0.0-r1.ebuild b/dev-cpp/ice/ice-3.0.0-r1.ebuild index 8e16fdb2fc99..74194043fea2 100644 --- a/dev-cpp/ice/ice-3.0.0-r1.ebuild +++ b/dev-cpp/ice/ice-3.0.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ice/ice-3.0.0-r1.ebuild,v 1.2 2006/01/19 17:50:03 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ice/ice-3.0.0-r1.ebuild,v 1.3 2006/01/19 18:03:34 nattfodd Exp $ inherit eutils @@ -13,7 +13,7 @@ SRC_URI="http://www.zeroc.com/download/Ice/3.0/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" -IUSE="readline test debug" +IUSE="ncurses test debug" DEPEND="ncurses? ( sys-libs/ncurses sys-libs/readline ) @@ -40,7 +40,7 @@ src_unpack() { || die "Failed to set lib64 directory" fi - if ! use readline; then + if ! use ncurses; then sed -i -e "s# USE_READLINE.*# USE_READLINE := no#g" \ ${S}/config/Make.rules || die "Failed to set no readline" fi |