diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-12-25 19:25:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-12-25 19:25:33 +0000 |
commit | 802a0a0f2bd588fa8cabd9180161161124254b97 (patch) | |
tree | e8518bd643d8fb9d074c8b37522f338d547121e5 /app-editors | |
parent | Initial commit - this closes bug #16998. (diff) | |
download | historical-802a0a0f2bd588fa8cabd9180161161124254b97.tar.gz historical-802a0a0f2bd588fa8cabd9180161161124254b97.tar.bz2 historical-802a0a0f2bd588fa8cabd9180161161124254b97.zip |
icc support #36002
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/nano/nano-1.3.0.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app-editors/nano/nano-1.3.0.ebuild b/app-editors/nano/nano-1.3.0.ebuild index 7696640d57fc..927ff9a942d3 100644 --- a/app-editors/nano/nano-1.3.0.ebuild +++ b/app-editors/nano/nano-1.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.3.0.ebuild,v 1.3 2003/12/17 04:48:34 brad_mssw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.3.0.ebuild,v 1.4 2003/12/25 19:25:33 vapier Exp $ inherit eutils @@ -12,7 +12,7 @@ SRC_URI="http://www.nano-editor.org/dist/v1.3/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ppc64" -IUSE="nls build spell justify debug slang" +IUSE="nls build spell justify debug slang icc" DEPEND=">=sys-libs/ncurses-5.2 nls? ( sys-devel/gettext ) @@ -28,6 +28,8 @@ src_unpack() { } src_compile() { + use icc && export CC=icc + local myconf="" use build && myconf="${myconf} --disable-wrapping-as-root" [ `use ncurses` ] || myconf="${myconf} `use_with slang`" |