diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-01 10:08:50 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-01 10:08:50 +0000 |
commit | 060cc6d2eed3243ac7ba493c828c100971b5d6fb (patch) | |
tree | 8abd05834e8b17071c6843d19791ad715edf4c75 /sys-devel | |
parent | Removing these files should reduces the size of the portage tree to 2/3 (diff) | |
download | gentoo-2-060cc6d2eed3243ac7ba493c828c100971b5d6fb.tar.gz gentoo-2-060cc6d2eed3243ac7ba493c828c100971b5d6fb.tar.bz2 gentoo-2-060cc6d2eed3243ac7ba493c828c100971b5d6fb.zip |
*** empty log message ***
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild | 8 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-2.95.3.ebuild | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild b/sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild index 95694bb5b955..9820b214586b 100644 --- a/sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild +++ b/sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild @@ -1,14 +1,16 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild,v 1.2 2001/03/06 05:27:28 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.10.91.0.2-r1.ebuild,v 1.3 2001/05/01 10:08:50 achim Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Tools necessary to build programs" SRC_URI="http://ftp.valinux.com/pub/support/hjl/binutils/${A}" -DEPEND="virtual/glibc nls? ( sys-devel/gettext )" -RDEPEND="virtual/glibc" + +if [ -z "`use build`" ] ; then + DEPEND="nls? ( sys-devel/gettext )" +fi src_compile() { diff --git a/sys-devel/gcc/gcc-2.95.3.ebuild b/sys-devel/gcc/gcc-2.95.3.ebuild index 7161e76c8457..2f15b10462fb 100644 --- a/sys-devel/gcc/gcc-2.95.3.ebuild +++ b/sys-devel/gcc/gcc-2.95.3.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-devel/gcc/gcc-2.95.3.ebuild,v 1.1 2001/03/20 07:19:20 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-2.95.3.ebuild,v 1.2 2001/05/01 10:08:50 achim Exp $ SRC_URI="ftp://gcc.gnu.org/pub/gcc/releases/${P}/${P}.tar.gz" @@ -21,10 +21,10 @@ T=/usr DESCRIPTION="Modern GCC C/C++ compiler" HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" -DEPEND="virtual/glibc - nls? ( sys-devel/gettext )" +if [ -z "`use build`" ] ; then + DEPEND="nls? ( sys-devel/gettext )" +fi -RDEPEND="virtual/glibc" src_unpack() { |