diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-08-29 22:06:20 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-08-29 22:06:20 +0000 |
commit | 9c8d7bf20c39c4d7dd306a258bd61fceedafc7f7 (patch) | |
tree | ed697e3e60e59517937cd33893536ee4d8816013 /sys-apps/texinfo | |
parent | This version does not build info itself if "build" is in use. This should (diff) | |
download | historical-9c8d7bf20c39c4d7dd306a258bd61fceedafc7f7.tar.gz historical-9c8d7bf20c39c4d7dd306a258bd61fceedafc7f7.tar.bz2 historical-9c8d7bf20c39c4d7dd306a258bd61fceedafc7f7.zip |
small dep fix
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r-- | sys-apps/texinfo/texinfo-4.0-r3.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys-apps/texinfo/texinfo-4.0-r3.ebuild b/sys-apps/texinfo/texinfo-4.0-r3.ebuild index bf9682d80949..bf97543d456a 100644 --- a/sys-apps/texinfo/texinfo-4.0-r3.ebuild +++ b/sys-apps/texinfo/texinfo-4.0-r3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.0-r3.ebuild,v 1.1 2001/08/29 21:55:06 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.0-r3.ebuild,v 1.2 2001/08/29 22:06:20 achim Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -9,10 +9,12 @@ DESCRIPTION="The GNU info program and utilities" SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/texinfo/${A} ftp://ftp.gnu.org/pub/gnu/texinfo/${A}" - -DEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2 - nls? ( sys-devel/gettext )" -RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2" +if [ "`use build`" ] ; then + DEPEND="virtual/glibc" +else + DEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext )" + RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2-r2" +fi src_unpack() { unpack ${A} |