| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.170 2012/01/09 10:42:19 grobian Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.171 2012/06/02 19:16:31 zmedico Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: mysql.eclass |
5 | # @ECLASS: mysql.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # MySQL Team <mysql-bugs@gentoo.org> |
7 | # MySQL Team <mysql-bugs@gentoo.org> |
| 8 | # Luca Longinotti <chtekk@gentoo.org> |
8 | # Luca Longinotti <chtekk@gentoo.org> |
| … | |
… | |
| 17 | # phase hooks. |
17 | # phase hooks. |
| 18 | |
18 | |
| 19 | WANT_AUTOCONF="latest" |
19 | WANT_AUTOCONF="latest" |
| 20 | WANT_AUTOMAKE="latest" |
20 | WANT_AUTOMAKE="latest" |
| 21 | |
21 | |
| 22 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
22 | inherit eutils flag-o-matic gnuconfig autotools multilib mysql_fx versionator toolchain-funcs |
| 23 | |
23 | |
| 24 | # Shorten the path because the socket path length must be shorter than 107 chars |
24 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 25 | # and we will run a mysql server during test phase |
25 | # and we will run a mysql server during test phase |
| 26 | S="${WORKDIR}/mysql" |
26 | S="${WORKDIR}/mysql" |
| 27 | |
27 | |