diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 01:26:20 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 01:26:20 +0000 |
commit | 4564b542d3e48713838de2031be73444ef4a3ed1 (patch) | |
tree | 88af04f26ec5c78e9146065077ca5231d5ed3cd9 /media-sound/yammi | |
parent | removed default src_compile. awaiting bug reports on parallel install (diff) | |
download | historical-4564b542d3e48713838de2031be73444ef4a3ed1.tar.gz historical-4564b542d3e48713838de2031be73444ef4a3ed1.tar.bz2 historical-4564b542d3e48713838de2031be73444ef4a3ed1.zip |
Fix use invocation
Diffstat (limited to 'media-sound/yammi')
-rw-r--r-- | media-sound/yammi/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/yammi/yammi-0.8.2.ebuild | 6 | ||||
-rw-r--r-- | media-sound/yammi/yammi-1.0.ebuild | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/media-sound/yammi/ChangeLog b/media-sound/yammi/ChangeLog index 3182647baff9..0675e689ba22 100644 --- a/media-sound/yammi/ChangeLog +++ b/media-sound/yammi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/yammi # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/yammi/ChangeLog,v 1.14 2004/05/10 23:59:31 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/yammi/ChangeLog,v 1.15 2004/06/08 01:19:38 agriffis Exp $ + + 07 Jun 2004; Aron Griffis <agriffis@gentoo.org> yammi-0.8.2.ebuild, + yammi-1.0.ebuild: + Fix use invocation 10 May 2004; Travis Tilley <lv@gentoo.org> yammi-0.8.2.ebuild, yammi-1.0.ebuild: diff --git a/media-sound/yammi/yammi-0.8.2.ebuild b/media-sound/yammi/yammi-0.8.2.ebuild index e95d563a8561..48c238737903 100644 --- a/media-sound/yammi/yammi-0.8.2.ebuild +++ b/media-sound/yammi/yammi-0.8.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/media-sound/yammi/yammi-0.8.2.ebuild,v 1.13 2004/05/10 23:59:31 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/yammi/yammi-0.8.2.ebuild,v 1.14 2004/06/08 01:19:38 agriffis Exp $ inherit flag-o-matic eutils @@ -43,7 +43,7 @@ src_compile() { use xmms || myconf="--disable-xmms" use kde || myconf="--disable-KDE --disable-noatun ${myconf}" - if [ -z "`use xmms`" ] && [ -z "`use kde`" ] + if ! use xmms && ! use kde then myconf="--disable-ogglibs ${myconf}" else @@ -61,7 +61,7 @@ src_install() { } pkg_postinst() { - if [ -z "`use kde`" ] && [ -z "`use xmms`" ] + if ! use kde && ! use xmms then ewarn "Yammi is compiled without support for xmms and noatun." ewarn "Now the functionality of Yammi is very limited." diff --git a/media-sound/yammi/yammi-1.0.ebuild b/media-sound/yammi/yammi-1.0.ebuild index f724ab774f98..fca37697b33b 100644 --- a/media-sound/yammi/yammi-1.0.ebuild +++ b/media-sound/yammi/yammi-1.0.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/media-sound/yammi/yammi-1.0.ebuild,v 1.6 2004/05/10 23:59:31 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/yammi/yammi-1.0.ebuild,v 1.7 2004/06/08 01:19:38 agriffis Exp $ inherit flag-o-matic eutils @@ -43,7 +43,7 @@ src_compile() { use xmms || myconf="--disable-xmms" use kde || myconf="--disable-KDE --disable-noatun ${myconf}" - if [ -z "`use xmms`" ] && [ -z "`use kde`" ] + if ! use xmms && ! use kde then myconf="--disable-ogglibs ${myconf}" else @@ -61,7 +61,7 @@ src_install() { } pkg_postinst() { - if [ -z "`use kde`" ] && [ -z "`use xmms`" ] + if ! use kde && ! use xmms then ewarn "Yammi is compiled without support for xmms and noatun." ewarn "Now the functionality of Yammi is very limited." |