bugs 156301,160059
authorFrancesco Riosa <vivo@gentoo.org>
Fri, 5 Jan 2007 00:07:23 +0000 (00:07 +0000)
committerFrancesco Riosa <vivo@gentoo.org>
Fri, 5 Jan 2007 00:07:23 +0000 (00:07 +0000)
eclass/mysql.eclass

index 2849f5b6483a8ca60022d3fcba4689f57fb0acc7..cbc3f60aec76a8e2aff968543c894576aa63bf41 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2006 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.58 2007/01/04 20:38:16 vivo Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.59 2007/01/05 00:07:23 vivo Exp $
 # kate: encoding utf-8; eol unix;
 # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off;
 # kate: word-wrap-column 80; word-wrap off;
 
 ECLASS="mysql"
 INHERITED="$INHERITED $ECLASS"
+WANT_AUTOCONF="latest"
+WANT_AUTOMAKE="latest"
 inherit eutils flag-o-matic gnuconfig autotools mysql_fx
 
+# Shorten the path because the socket path length must be shorter than 107 chars
+# and we will run a mysql server during test phase
+S="${WORKDIR}/mysql"
+
 # avoid running userspace code 8 times per ebuild :(
 if [[ "${_MYPVR}" != "${PVR}" ]] && [[ -n "${PVR}" ]]
 then
        _MYPVR=${PVR}
 
-       [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070104"
+       [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070105"
 
        if [[ ${PR#r} -lt 60 ]] ; then
                IS_BITKEEPER=0
@@ -69,10 +75,6 @@ then
                DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )"
        fi
 
-       # Shorten the path because the socket path length must be shorter than 107 chars
-       # and we will run a mysql server during test phase
-       S="${WORKDIR}/mysql"
-
        # BitKeeper dependency, compile-time only
        [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client"