summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-10-20 20:11:56 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-10-20 20:11:56 +0000
commit81dd3a1ef4bc136cc729a32db6060e758c4dda20 (patch)
treec8d2ce89f8300a077f0ca062223963287609c0b9 /dev-db/mysql
parentadded ~ppc to keywords (diff)
downloadhistorical-81dd3a1ef4bc136cc729a32db6060e758c4dda20.tar.gz
historical-81dd3a1ef4bc136cc729a32db6060e758c4dda20.tar.bz2
historical-81dd3a1ef4bc136cc729a32db6060e758c4dda20.zip
sparc check fixed
Diffstat (limited to 'dev-db/mysql')
-rw-r--r--dev-db/mysql/ChangeLog7
-rw-r--r--dev-db/mysql/mysql-3.23.52-r1.ebuild11
2 files changed, 12 insertions, 6 deletions
diff --git a/dev-db/mysql/ChangeLog b/dev-db/mysql/ChangeLog
index 023529bd4f0c..994c89ed544e 100644
--- a/dev-db/mysql/ChangeLog
+++ b/dev-db/mysql/ChangeLog
@@ -1,8 +1,13 @@
# ChangeLog for dev-db/mysql
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.17 2002/10/15 14:34:33 mcummings Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.18 2002/10/20 20:11:56 seemant Exp $
*mysql-3.23.52-r1 (29 Sep 2002)
+
+ 20 Oct 2002; Seemant Kulleen <seemant@gentoo.org> mysql-3.23.52-r1.ebuild :
+
+ Changed the sparc USE check per bug #9372 by torgeir@trenger.ro (Torgeir
+ Hansen)
15 Oct 2002; <mcummings@datanode.net> mysql-3.23.52-r1.ebuild :
diff --git a/dev-db/mysql/mysql-3.23.52-r1.ebuild b/dev-db/mysql/mysql-3.23.52-r1.ebuild
index e057bd4182c0..f9bae75f3ef3 100644
--- a/dev-db/mysql/mysql-3.23.52-r1.ebuild
+++ b/dev-db/mysql/mysql-3.23.52-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-3.23.52-r1.ebuild,v 1.6 2002/10/20 18:41:13 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-3.23.52-r1.ebuild,v 1.7 2002/10/20 20:11:56 seemant Exp $
IUSE="static readline innodb berkdb tcpd"
@@ -51,11 +51,12 @@ src_compile() {
myconf="--with-thread-safe-client"
# The following fix is due to a bug with bdb on sparc's. See:
# http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8
- if [ use sparc || use sparc64 ] ; then
- myconf="${myconf} --without-berkeley-db"
+ if use sparc || use sparc64
+ then
+ myconf="${myconf} --without-berkeley-db"
else
- use berkdb && myconf="${myconf} --with-berkeley-db=./bdb" \
- || myconf="${myconf} --without-berkeley-db"
+ use berkdb && myconf="${myconf} --with-berkeley-db=./bdb" \
+ || myconf="${myconf} --without-berkeley-db"
fi
use readline && myconf="${myconf} --with-readline"
use readline || myconf="${myconf} --without-readline"