diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-06-03 06:23:16 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-06-03 06:23:16 +0000 |
commit | c06f0a0f92249456d36b4c31e7fa79aabd41596d (patch) | |
tree | 554a004d8d0b381dd497a278e8a66f4ecd33bc86 /dev-util | |
parent | new version of dialog that should work with gcc 3.1 (diff) | |
download | gentoo-2-c06f0a0f92249456d36b4c31e7fa79aabd41596d.tar.gz gentoo-2-c06f0a0f92249456d36b4c31e7fa79aabd41596d.tar.bz2 gentoo-2-c06f0a0f92249456d36b4c31e7fa79aabd41596d.zip |
doh... this doesn't fix gcc 3.1/ncurses problems
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/dialog/dialog-0.9_beta20020519.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-util/dialog/dialog-0.9_beta20020519.ebuild b/dev-util/dialog/dialog-0.9_beta20020519.ebuild index 0e0ca403fee4..dd1620feb51a 100644 --- a/dev-util/dialog/dialog-0.9_beta20020519.ebuild +++ b/dev-util/dialog/dialog-0.9_beta20020519.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Prakash Shetty (Crux) <ps@gnuos.org> -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-0.9_beta20020519.ebuild,v 1.1 2002/06/03 05:50:56 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-0.9_beta20020519.ebuild,v 1.2 2002/06/03 06:23:16 blocke Exp $ MY_PV="0.9b-20020519" S=${WORKDIR}/dialog-${MY_PV} @@ -13,11 +13,11 @@ DEPEND=">=sys-apps/bash-2.04-r3 >=sys-libs/ncurses-5.2-r5" src_compile() { - econf + econf --with-ncurses || die } src_install() { - make DESTDIR=${D} MANDIR=${D}/usr/share/man/man1 install + make DESTDIR=${D} MANDIR=${D}/usr/share/man/man1 install || die dodoc CHANGES COPYING README VERSION } |