diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-04 02:18:56 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-04 02:18:56 +0000 |
commit | 3c220c90f5fb9705dec03be5c03b9a800e004a7d (patch) | |
tree | 26ecb99a1f2bdd30087e7858b846c166c8bc3438 /media-video/ogle | |
parent | gah, forgot a patch (diff) | |
download | gentoo-2-3c220c90f5fb9705dec03be5c03b9a800e004a7d.tar.gz gentoo-2-3c220c90f5fb9705dec03be5c03b9a800e004a7d.tar.bz2 gentoo-2-3c220c90f5fb9705dec03be5c03b9a800e004a7d.zip |
small fix0rs
Diffstat (limited to 'media-video/ogle')
-rw-r--r-- | media-video/ogle/ogle-0.8.4.ebuild | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/media-video/ogle/ogle-0.8.4.ebuild b/media-video/ogle/ogle-0.8.4.ebuild index 5453d5977cd5..517b5a720cf5 100644 --- a/media-video/ogle/ogle-0.8.4.ebuild +++ b/media-video/ogle/ogle-0.8.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-video/ogle/ogle-0.8.4.ebuild,v 1.1 2002/07/01 08:10:27 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ogle/ogle-0.8.4.ebuild,v 1.2 2002/07/04 02:18:56 seemant Exp $ inherit libtool @@ -29,9 +29,17 @@ src_compile() { local myconf - use mmx || myconf="--disable-mmx" - use oss || myconf="${myconf} --disable-oss" - use alsa || myconf="${myconf} --disable-alsa" + use mmx \ + && myconf="--enable-mmx" \ + || myconf="--disable-mmx" + + use oss \ + && myconf="${myconf} --enable-oss" \ + || myconf="${myconf} --disable-oss" + + use alsa \ + && myconf="${myconf} --enable-alsa" \ + || myconf="${myconf} --disable-alsa" elibtoolize |