diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-29 07:52:39 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-29 07:52:39 +0000 |
commit | 43c941a7b13c89e9836460021bc6ac1d0c08c21e (patch) | |
tree | fe59e7d5ad27b5d7757df0d3becbd8c73e573399 /net-irc | |
parent | fixed java dependency (diff) | |
download | gentoo-2-43c941a7b13c89e9836460021bc6ac1d0c08c21e.tar.gz gentoo-2-43c941a7b13c89e9836460021bc6ac1d0c08c21e.tar.bz2 gentoo-2-43c941a7b13c89e9836460021bc6ac1d0c08c21e.zip |
mmx check tied to x86
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/xchat/xchat-1.8.9-r3.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net-irc/xchat/xchat-1.8.9-r3.ebuild b/net-irc/xchat/xchat-1.8.9-r3.ebuild index d2f8033f41ef..5c5b912743cf 100644 --- a/net-irc/xchat/xchat-1.8.9-r3.ebuild +++ b/net-irc/xchat/xchat-1.8.9-r3.ebuild @@ -1,6 +1,6 @@ # Copyrigth 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-1.8.9-r3.ebuild,v 1.2 2002/08/26 21:06:33 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-1.8.9-r3.ebuild,v 1.3 2002/08/29 07:52:39 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="X-Chat is a graphical IRC client for UNIX operating systems." @@ -63,9 +63,12 @@ src_compile() { && myopts="${myopts} --enable-hebrew --enable-japanese-conv" \ || myopts="${myopts} --disable-nls" - use mmx \ - && myopts="${myopts} --enable-mmx" \ - || myopts="${myopts} --disable-mmx" + if use x86 + then + use mmx \ + && myopts="${myopts} --enable-mmx" \ + || myopts="${myopts} --disable-mmx" + fi use ipv6 \ && myopts="${myopts} --enable-ipv6" |