diff options
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 |