diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 03:25:52 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 03:25:52 +0000 |
commit | dac06d24d0f020f81e6d221b35a766db1365ce50 (patch) | |
tree | 895a47be512ea30011da23fa295d60fea354bd04 /sys-devel | |
parent | Marked stable on sparc wrt bug #54590. (Manifest recommit) (diff) | |
download | gentoo-2-dac06d24d0f020f81e6d221b35a766db1365ce50.tar.gz gentoo-2-dac06d24d0f020f81e6d221b35a766db1365ce50.tar.bz2 gentoo-2-dac06d24d0f020f81e6d221b35a766db1365ce50.zip |
QA - fix use invocation
Diffstat (limited to 'sys-devel')
18 files changed, 81 insertions, 69 deletions
diff --git a/sys-devel/binutils/ChangeLog b/sys-devel/binutils/ChangeLog index 995f46c32f4d..78592e42d22e 100644 --- a/sys-devel/binutils/ChangeLog +++ b/sys-devel/binutils/ChangeLog @@ -1,6 +1,18 @@ # ChangeLog for sys-devel/binutils # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/ChangeLog,v 1.135 2004/06/20 13:33:01 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/ChangeLog,v 1.136 2004/06/24 03:25:52 agriffis Exp $ + + 23 Jun 2004; Aron Griffis <agriffis@gentoo.org> + binutils-2.11.92.0.12.3-r2.ebuild, binutils-2.11.92.0.7.ebuild, + binutils-2.12.90.0.15.ebuild, binutils-2.13.90.0.16-r1.ebuild, + binutils-2.13.90.0.18-r1.ebuild, binutils-2.13.90.0.18.ebuild, + binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1-r1.ebuild, + binutils-2.14.90.0.5-r1.ebuild, binutils-2.14.90.0.6-r2.ebuild, + binutils-2.14.90.0.6-r3.ebuild, binutils-2.14.90.0.6-r6.ebuild, + binutils-2.14.90.0.6-r7.ebuild, binutils-2.14.90.0.7-r4.ebuild, + binutils-2.14.90.0.7.ebuild, binutils-2.14.90.0.8-r1.ebuild, + binutils-2.14.90.0.8.ebuild: + QA - fix use invocation 20 Jun 2004; Daniel Black <dragonheart@gentoo.org> binutils-2.14.90.0.8-r2.ebuild, binutils-2.15.91.0.1-r2.ebuild: diff --git a/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild b/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild index 393f5bef57af..b94deca81f11 100644 --- a/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild +++ b/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild,v 1.15 2004/01/18 10:02:11 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild,v 1.16 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls static build" @@ -40,14 +40,14 @@ src_compile() { --host=${CHOST} \ ${myconf} || die - if [ "`use static`" ] + if use static then emake -e LDFLAGS=-all-static || die else emake || die fi - if [ -z "`use build`" ] + if ! use build then #make the info pages (makeinfo included with gcc is used) make info || die @@ -86,7 +86,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then #install info pages make infodir=${D}/usr/share/info \ diff --git a/sys-devel/binutils/binutils-2.11.92.0.7.ebuild b/sys-devel/binutils/binutils-2.11.92.0.7.ebuild index 620b921fb6b8..c99efd3b9cb3 100644 --- a/sys-devel/binutils/binutils-2.11.92.0.7.ebuild +++ b/sys-devel/binutils/binutils-2.11.92.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.11.92.0.7.ebuild,v 1.14 2004/01/18 10:02:11 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.11.92.0.7.ebuild,v 1.15 2004/06/24 03:25:52 agriffis Exp $ S=${WORKDIR}/${P} DESCRIPTION="Tools necessary to build programs" @@ -14,12 +14,12 @@ DEPEND="virtual/glibc" src_compile() { local myconf - if [ -z "`use nls`" ] + if ! use nls then myconf="--disable-nls" fi ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} ${myconf} || die - if [ "`use static`" ] + if use static then emake -e LDFLAGS=-all-static || die else @@ -54,7 +54,7 @@ src_install() { ln -s ../${CHOST}/bin/${x} ${x} done cd ${S} - if [ -z "`use build`" ] + if ! use build then dodoc COPYING* README docinto bfd diff --git a/sys-devel/binutils/binutils-2.12.90.0.15.ebuild b/sys-devel/binutils/binutils-2.12.90.0.15.ebuild index a333762bc5f7..0ba30d37d904 100644 --- a/sys-devel/binutils/binutils-2.12.90.0.15.ebuild +++ b/sys-devel/binutils/binutils-2.12.90.0.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.12.90.0.15.ebuild,v 1.14 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.12.90.0.15.ebuild,v 1.15 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap static build" @@ -45,7 +45,7 @@ src_compile() { --host=${CHOST} \ ${myconf} || die - if [ "`use static`" ] + if use static then make headers -C bfd CFLAGS=-O || die emake -e LDFLAGS=-all-static || die @@ -54,9 +54,9 @@ src_compile() { emake || die fi - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then #nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm {} ';' @@ -102,7 +102,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.13.90.0.16-r1.ebuild b/sys-devel/binutils/binutils-2.13.90.0.16-r1.ebuild index 146e5e3ad407..750d9b5c66ba 100644 --- a/sys-devel/binutils/binutils-2.13.90.0.16-r1.ebuild +++ b/sys-devel/binutils/binutils-2.13.90.0.16-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.16-r1.ebuild,v 1.13 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.16-r1.ebuild,v 1.14 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap static build" @@ -75,7 +75,7 @@ src_compile() { --host=${CHOST} \ ${myconf} || die - if [ "`use static`" ] + if use static then make headers -C bfd CFLAGS=-O || die emake -e LDFLAGS=-all-static || die @@ -84,9 +84,9 @@ src_compile() { emake || die fi - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then #nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -135,7 +135,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.13.90.0.18-r1.ebuild b/sys-devel/binutils/binutils-2.13.90.0.18-r1.ebuild index 10904c2b007d..41151218aeed 100644 --- a/sys-devel/binutils/binutils-2.13.90.0.18-r1.ebuild +++ b/sys-devel/binutils/binutils-2.13.90.0.18-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.18-r1.ebuild,v 1.12 2004/04/24 07:54:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.18-r1.ebuild,v 1.13 2004/06/24 03:25:52 agriffis Exp $ # NOTE to Maintainer: ChangeLog states that it no longer use perl to build # the manpages, but seems this is incorrect .... @@ -97,9 +97,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -148,7 +148,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.13.90.0.18.ebuild b/sys-devel/binutils/binutils-2.13.90.0.18.ebuild index 9ab2cc35f197..bc6cce64c4d2 100644 --- a/sys-devel/binutils/binutils-2.13.90.0.18.ebuild +++ b/sys-devel/binutils/binutils-2.13.90.0.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.18.ebuild,v 1.21 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.18.ebuild,v 1.22 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -84,9 +84,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -135,7 +135,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.2.ebuild b/sys-devel/binutils/binutils-2.14.90.0.2.ebuild index ec14773e7886..51b6aca01e76 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.2.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.2.ebuild,v 1.16 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.2.ebuild,v 1.17 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -97,9 +97,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -161,7 +161,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.4.1-r1.ebuild b/sys-devel/binutils/binutils-2.14.90.0.4.1-r1.ebuild index b665352937e3..a3d7da569a89 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.4.1-r1.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.4.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.4.1-r1.ebuild,v 1.9 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.4.1-r1.ebuild,v 1.10 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -121,9 +121,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -185,7 +185,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.5-r1.ebuild b/sys-devel/binutils/binutils-2.14.90.0.5-r1.ebuild index be35da811a48..89808480709a 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.5-r1.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.5-r1.ebuild,v 1.8 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.5-r1.ebuild,v 1.9 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -110,9 +110,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -161,7 +161,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.6-r2.ebuild b/sys-devel/binutils/binutils-2.14.90.0.6-r2.ebuild index 8e1d4907fae3..527572a355e1 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.6-r2.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.6-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r2.ebuild,v 1.7 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r2.ebuild,v 1.8 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -107,9 +107,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -158,7 +158,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.6-r3.ebuild b/sys-devel/binutils/binutils-2.14.90.0.6-r3.ebuild index 38d1b80c8d32..e7abd5a0ea34 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.6-r3.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.6-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r3.ebuild,v 1.9 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r3.ebuild,v 1.10 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -119,9 +119,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -170,7 +170,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.6-r6.ebuild b/sys-devel/binutils/binutils-2.14.90.0.6-r6.ebuild index c5ae72080001..c66b8d2eff3c 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.6-r6.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.6-r6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r6.ebuild,v 1.7 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r6.ebuild,v 1.8 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -138,9 +138,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -189,7 +189,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.6-r7.ebuild b/sys-devel/binutils/binutils-2.14.90.0.6-r7.ebuild index 526882b606dd..4bdec483a3c4 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.6-r7.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.6-r7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r7.ebuild,v 1.7 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.6-r7.ebuild,v 1.8 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -129,9 +129,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -193,7 +193,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.7-r4.ebuild b/sys-devel/binutils/binutils-2.14.90.0.7-r4.ebuild index 98736246672f..6c422cb6fb93 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.7-r4.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.7-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.7-r4.ebuild,v 1.7 2004/04/28 04:34:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.7-r4.ebuild,v 1.8 2004/06/24 03:25:52 agriffis Exp $ # NOTE to Maintainer: ChangeLog states that it no longer use perl to build # the manpages, but seems this is incorrect .... @@ -178,7 +178,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.7.ebuild b/sys-devel/binutils/binutils-2.14.90.0.7.ebuild index 4f5c76fe5cf5..d65867d755f9 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.7.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.7.ebuild,v 1.10 2004/04/28 04:34:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.7.ebuild,v 1.11 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -105,9 +105,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -169,7 +169,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.8-r1.ebuild b/sys-devel/binutils/binutils-2.14.90.0.8-r1.ebuild index 521131bedbc0..17ca62759ca7 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.8-r1.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.8-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.8-r1.ebuild,v 1.14 2004/06/05 16:53:18 iluxa Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.8-r1.ebuild,v 1.15 2004/06/24 03:25:52 agriffis Exp $ # NOTE to Maintainer: ChangeLog states that it no longer use perl to build # the manpages, but seems this is incorrect .... @@ -82,9 +82,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -146,7 +146,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ diff --git a/sys-devel/binutils/binutils-2.14.90.0.8.ebuild b/sys-devel/binutils/binutils-2.14.90.0.8.ebuild index 119be560962e..9c5093dbe3e2 100644 --- a/sys-devel/binutils/binutils-2.14.90.0.8.ebuild +++ b/sys-devel/binutils/binutils-2.14.90.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.8.ebuild,v 1.6 2004/04/28 04:34:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.14.90.0.8.ebuild,v 1.7 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -85,9 +85,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -149,7 +149,7 @@ src_install() { fi cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ |