diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:12:50 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:12:50 +0000 |
commit | f2cd0c565bb16adb6eee1b1470945ab36843219c (patch) | |
tree | f68887df1e7c0a7e91afc855ff65f61342f3db81 /app-sci/emboss | |
parent | stable on amd64 (Manifest recommit) (diff) | |
download | gentoo-2-f2cd0c565bb16adb6eee1b1470945ab36843219c.tar.gz gentoo-2-f2cd0c565bb16adb6eee1b1470945ab36843219c.tar.bz2 gentoo-2-f2cd0c565bb16adb6eee1b1470945ab36843219c.zip |
Fix use invocation
Diffstat (limited to 'app-sci/emboss')
-rw-r--r-- | app-sci/emboss/ChangeLog | 6 | ||||
-rw-r--r-- | app-sci/emboss/emboss-2.8.0-r1.ebuild | 6 | ||||
-rw-r--r-- | app-sci/emboss/emboss-2.8.0-r2.ebuild | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/app-sci/emboss/ChangeLog b/app-sci/emboss/ChangeLog index 43961ccf97df..ca985305b182 100644 --- a/app-sci/emboss/ChangeLog +++ b/app-sci/emboss/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-sci/emboss # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/emboss/ChangeLog,v 1.7 2004/05/12 15:09:50 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/emboss/ChangeLog,v 1.8 2004/06/02 14:12:50 agriffis Exp $ + + 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> emboss-2.8.0-r1.ebuild, + emboss-2.8.0-r2.ebuild: + Fix use invocation 12 May 2004; David Holm <dholm@gentoo.org> emboss-2.8.0-r2.ebuild: Added to ~ppc. diff --git a/app-sci/emboss/emboss-2.8.0-r1.ebuild b/app-sci/emboss/emboss-2.8.0-r1.ebuild index 0fb5aadcfb02..269025435f5b 100644 --- a/app-sci/emboss/emboss-2.8.0-r1.ebuild +++ b/app-sci/emboss/emboss-2.8.0-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/app-sci/emboss/emboss-2.8.0-r1.ebuild,v 1.1 2004/01/31 01:46:27 sediener Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/emboss/emboss-2.8.0-r1.ebuild,v 1.2 2004/06/02 14:12:50 agriffis Exp $ S=${WORKDIR}/EMBOSS-${PV} @@ -21,11 +21,11 @@ DEPEND="X? ( virtual/x11 src_compile() { local myconf - if [ -z `use X` ] + if ! use X then myconf="--without-x --without-pngdriver" else - if [ -z `use png` ] + if ! use png then myconf="${myconf} --without-pngdriver" fi diff --git a/app-sci/emboss/emboss-2.8.0-r2.ebuild b/app-sci/emboss/emboss-2.8.0-r2.ebuild index e4e63a877460..f38abd59d722 100644 --- a/app-sci/emboss/emboss-2.8.0-r2.ebuild +++ b/app-sci/emboss/emboss-2.8.0-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/app-sci/emboss/emboss-2.8.0-r2.ebuild,v 1.2 2004/05/12 15:09:50 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/emboss/emboss-2.8.0-r2.ebuild,v 1.3 2004/06/02 14:12:50 agriffis Exp $ S=${WORKDIR}/EMBOSS-${PV} @@ -21,11 +21,11 @@ DEPEND="X? ( virtual/x11 src_compile() { local myconf - if [ -z `use X` ] + if ! use X then myconf="--without-x --without-pngdriver" else - if [ -z `use png` ] + if ! use png then myconf="${myconf} --without-pngdriver" fi |