diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 01:39:27 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 01:39:27 +0000 |
commit | e6a8e664eaecabd19cb99a8f68c1f70168b43dae (patch) | |
tree | 2692eb3a490e4af1a6989d75c6ca24fced388259 /media-sound | |
parent | stable on amd64 (Manifest recommit) (diff) | |
download | gentoo-2-e6a8e664eaecabd19cb99a8f68c1f70168b43dae.tar.gz gentoo-2-e6a8e664eaecabd19cb99a8f68c1f70168b43dae.tar.bz2 gentoo-2-e6a8e664eaecabd19cb99a8f68c1f70168b43dae.zip |
Fix use invocation
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/audiocompress/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/audiocompress/audiocompress-1.3.ebuild | 6 | ||||
-rw-r--r-- | media-sound/vkeybd/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/vkeybd/vkeybd-0.1.12.ebuild | 4 |
4 files changed, 13 insertions, 7 deletions
diff --git a/media-sound/audiocompress/ChangeLog b/media-sound/audiocompress/ChangeLog index 22e09e39536c..185f6960ac1f 100644 --- a/media-sound/audiocompress/ChangeLog +++ b/media-sound/audiocompress/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/audiocompress # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audiocompress/ChangeLog,v 1.4 2004/03/26 21:34:37 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audiocompress/ChangeLog,v 1.5 2004/06/08 01:38:53 agriffis Exp $ + + 07 Jun 2004; Aron Griffis <agriffis@gentoo.org> audiocompress-1.3.ebuild: + Fix use invocation 26 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> audiocompress-1.5.ebuild: diff --git a/media-sound/audiocompress/audiocompress-1.3.ebuild b/media-sound/audiocompress/audiocompress-1.3.ebuild index f06a428ebd7e..f935418e3ea3 100644 --- a/media-sound/audiocompress/audiocompress-1.3.ebuild +++ b/media-sound/audiocompress/audiocompress-1.3.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/audiocompress/audiocompress-1.3.ebuild,v 1.5 2004/03/01 05:37:12 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audiocompress/audiocompress-1.3.ebuild,v 1.6 2004/06/08 01:38:53 agriffis Exp $ MY_P="AudioCompress-${PV}" @@ -18,7 +18,7 @@ DEPEND="xmms? ( media-sound/xmms )" S=${WORKDIR}/${MY_P} src_compile() { - if [ -n "`use xmms`" ]; then + if use xmms; then emake || die else emake AudioCompress || die @@ -27,7 +27,7 @@ src_compile() { src_install() { dobin AudioCompress || die - if [ -n "`use xmms`" ]; then + if use xmms; then exeinto "$(xmms-config --effect-plugin-dir)" || die doexe libcompress.so || die fi diff --git a/media-sound/vkeybd/ChangeLog b/media-sound/vkeybd/ChangeLog index 59062725a010..ec822c0bd96b 100644 --- a/media-sound/vkeybd/ChangeLog +++ b/media-sound/vkeybd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/vkeybd # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/vkeybd/ChangeLog,v 1.12 2004/04/24 16:11:42 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/vkeybd/ChangeLog,v 1.13 2004/06/08 01:39:27 agriffis Exp $ + + 07 Jun 2004; Aron Griffis <agriffis@gentoo.org> vkeybd-0.1.12.ebuild: + Fix use invocation 24 Apr 2004; Danny van Dyk <kugelfang@gentoo.org> vkeybd-0.1.15.ebuild: marked ~amd64. diff --git a/media-sound/vkeybd/vkeybd-0.1.12.ebuild b/media-sound/vkeybd/vkeybd-0.1.12.ebuild index 5c21e549f9a9..c20127598b37 100644 --- a/media-sound/vkeybd/vkeybd-0.1.12.ebuild +++ b/media-sound/vkeybd/vkeybd-0.1.12.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/vkeybd/vkeybd-0.1.12.ebuild,v 1.5 2004/02/01 11:52:58 ferringb Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/vkeybd/vkeybd-0.1.12.ebuild,v 1.6 2004/06/08 01:39:27 agriffis Exp $ DESCRIPTION="A virtual MIDI keyboard for X." HOMEPAGE="http://www.alsa-project.org/~iwai/alsa.html" @@ -31,7 +31,7 @@ src_compile() { local myconf="PREFIX=/usr" #vkeybd requires at least one of its USE_ variable to be set - if [ "`use alsa`" ]; then + if use alsa; then myconf="${myconf} USE_ALSA=1" use oss || myconf="${myconf} USE_AWE=0 USE_MIDI=0" else |